import { OptionModel } from './dropdown-option.model';
export declare class DropdownOptions {
    triggerRect?: ClientRect;
    options?: OptionModel[];
    fitWidth?: boolean;
    multi?: boolean;
    hideBackdrop?: boolean;
    parentElem?: any;
    filterFunc?: () => OptionModel[];
    returnFunc?: () => any;
}
