import { CrudBinding, CrudExpose, UseCrudProps, UseCrudRet, UseFsProps, UseFsRet } from "../d"; import { Ref } from "vue"; export declare function useCrud(ctx: UseCrudProps): UseCrudRet; export declare function useFs(props: UseFsProps): UseFsRet; export declare function useFsAsync(props: UseFsProps): Promise>; export type UseFsRefOptions = { deep?: boolean; }; export declare function useFsRef(): { crudRef: Ref; crudBinding: Ref; context: any; crudExpose: CrudExpose; };