export declare const StringConverter: { type: string; converter: (value: any) => Promise; }; export declare const NumberConverter: { type: string; converter: (value: any) => Promise; }; export declare const BooleanConverter: { type: string; converter: (value: any) => Promise; }; export declare const ArrayConverter: { type: string; converter: (value: any) => Promise; }; export declare const JSONConverter: { type: string; converter: (value: any) => Promise; };