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