import type { ReportDialogProps } from '../../../components/Feedback/ReportDialog';
export type ReportButtonProps = {
    onClick: () => void;
    buttonText: string;
    tooltip: string;
    hide: boolean;
};
type ReportComponentsProps = {
    visible?: boolean;
    props: Partial<ReportDialogProps> | ReportButtonProps;
};
export declare function useReportDialog(): Record<string, ReportComponentsProps>;
export {};
