export declare type Element = 'id' | 'string' | 'number' | { name: string; value: string | undefined; }[] | 'custom'; export declare type Value = unknown; export declare type Schema = { name: string; type: Element; }[]; //# sourceMappingURL=base.d.ts.map