import { FieldType } from '../entities/customer-field.entity';
export declare class CreateCustomerFieldDto {
    module: string;
    name: string;
    code: string;
    type: FieldType;
    options?: any[];
}
