import { ReportIssueTemplateBuilder } from './types'; /** * Props customizing the Addon. * * @public */ export type ReportIssueProps = { /** * Number of milliseconds after a user highlights some text before the report * issue link appears above the highlighted text. Defaults to 500ms. */ debounceTime?: number; /** * An optional function defining how a custom issue title and body should be * constructed, given some selected text. */ templateBuilder?: ReportIssueTemplateBuilder; }; export declare const ReportIssueAddon: ({ debounceTime, templateBuilder, }: ReportIssueProps) => import("react/jsx-runtime").JSX.Element | null;