export declare class SearchComboBoxGenericLocalModel {
    dataSource: any[];
    collectionName: string;
    optionField: string;
    placeholder: string;
    optionsLimit: number;
    isScrollable: boolean;
    sortField: string;
    typeSortField: string;
    constructor(dataSource: any[], collectionName?: string, optionField?: string, placeholder?: string, optionsLimit?: number, isScrollable?: boolean, sortField?: string, typeSortField?: string);
}
