export type UseSessionPackageJobOptions = { progressDurationMs?: number; }; export declare function useSessionPackageJob(options?: UseSessionPackageJobOptions): { text: string | null; setText: import("react").Dispatch>; loading: boolean; setLoading: import("react").Dispatch>; error: string | null; setError: import("react").Dispatch>; progress: number; setProgress: (value: number) => void; confirmOpen: boolean; openConfirm: () => void; closeConfirm: () => void; begin: () => void; complete: (params?: { text?: string | null; resetAfterMs?: number; }) => void; fail: (message: string) => void; reset: () => void; }; //# sourceMappingURL=useSessionPackageJob.d.ts.map