import { CrudProps } from '../props';
import { Pagination } from '../../../types';

export declare function useCrudConfig(props: CrudProps, emit: any): {
    handleSearch: import('lodash-unified').DebouncedFunc<() => void>;
    handleReset: () => void;
    handlePaginationChange: (val: any) => void;
    middleFormData: globalThis.WritableComputedRef<any>;
    isUseFormDataStorage: globalThis.ComputedRef<boolean | "">;
    middlePagination: globalThis.WritableComputedRef<Pagination>;
    isUsePaginationStorage: globalThis.ComputedRef<number | false | "" | undefined>;
    updateTableProPagination: (data?: any) => void;
};
