import { SelectOptions } from './types'; /** * Focuses a select element, selects the correct options and dispatches * the `change` event, simulating the user selecting an option * @param options Options to be selected. * @param element Element onto which to select the options. * @param config Object with extra config to dispatch change event when option selected * * selectOption('al' | ['al', 'ab'], select, config); */ export declare function selectOption(options: SelectOptions, element: HTMLElement | HTMLSelectElement | Document | Window, config: { emitEvents: boolean; }): void;