export declare class ServicioCampo {
    campoId: number;
    servicioId: number;
    nombre: string;
    checkForm: string;
    listaValores: string;
    obligatorio: boolean;
    valor: string;
    listaValoresValue: [];
    listaValoresLabel: [];
    label: string;
    info: string;
    constructor(campoId: number, servicioId: number, nombre: string, checkForm: string, listaValores: string, obligatorio: boolean, valor: string, listaValoresValue: [], listaValoresLabel: [], label: string, info: string);
}
