import { PbCategory } from "../../../../types"; interface UseImportPageParams { setLoading: () => void; clearLoading: () => void; closeDialog: () => void; folderId?: string; } declare const useImportPage: ({ setLoading, clearLoading, closeDialog, folderId }: UseImportPageParams) => { importPageMutation: ({ slug: category }: PbCategory, zipFileUrl: string, folderId: string | undefined) => Promise; showDialog: (category: PbCategory) => void; }; export default useImportPage;