interface SelectFieldProps { label: string; placeholder: string; options: string[]; defaultValue?: string; } interface SelectFieldPayload { type: string; config: { label: string; placeholder: string; options: string[]; default_value?: string; }; } declare const Select: { ({ label, placeholder, options, defaultValue }?: SelectFieldProps): (fieldName: String) => SelectFieldPayload; Option: () => { content: any; }; }; export default Select;