import { ListItemDTO } from './listItemDTO';
export interface SelectFieldDto {
    _default?: string;
    description?: string;
    example?: string;
    key?: string;
    label?: string;
    placeholder?: string;
    refresh?: boolean;
    tip?: string;
    type?: SelectFieldDto.TypeEnum;
    options?: Array<ListItemDTO>;
}
export declare namespace SelectFieldDto {
    const validTypeEnum: readonly ["INPUT", "SELECT", "RADIO", "TRANSFER_METHOD", "DYNAMIC_SELECT"];
    type TypeEnum = (typeof validTypeEnum)[number] | 'UNKNOWN';
    const discriminator: string;
    const attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
}
//# sourceMappingURL=selectFieldDto.d.ts.map