import { IResourceItem } from "@pankod/refine-core"; export declare type BaseRecord = { id?: string; [key: string]: any; }; export interface Option { label: string; value: string; } export declare type ITreeMenu = IMenuItem & { children: ITreeMenu[]; }; export declare type IMenuItem = IResourceItem & { key: string; route: string; }; export * from "./field"; export * from "./upload"; //# sourceMappingURL=index.d.ts.map