import { PbListPagesWhereInput } from "../../../../../admin/graphql/types"; export interface ExportPagesDialogProps { ids?: string[]; where?: PbListPagesWhereInput; sort?: string; search?: { query: string; }; } interface ExportPageDialogProps { exportUrl: string; } interface UseExportPageDialog { showExportPageContentDialog: (props: ExportPageDialogProps) => void; showExportPageLoadingDialog: (taskId: string) => void; showExportPageInitializeDialog: (props: ExportPagesDialogProps) => void; hideDialog: () => void; } declare const useExportPageDialog: () => UseExportPageDialog; export default useExportPageDialog;