import { SelectorInterface } from "../../src/lib/Service/Interface/SelectorInterface";
export declare class MultiSelectorMock implements SelectorInterface {
    triggerSelectEvent(option: any): any;
    getIndexOf(option: any): number;
    triggerDeselectEvent(option: any): any;
    toggle(option: any): void;
    select(option: any): void;
    deselect(option: any): void;
    selectAll$(): void;
    deselectAll$(): void;
    isSelected(option: any): boolean;
    getSelected(): any[];
}
