/// import { FormOptionsMap } from "../form/type"; export declare type ColWidth = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12; export declare type ParamType = "number" | "string"; export interface CrudRequestDetail { detail: (id: Id) => Promise; update?: (data: Partial, id: Id) => Promise; deleteById?: (id: Id) => Promise; getOptions?: () => Promise>; } export interface DetailLayoutProps { backUrl?: string; Detail: ({ id }: { id: Id; }) => JSX.Element; }