import { SelectionStrategy } from '../../../directives/selection/index';
export declare class SingleSelectListStrategy<T> extends SelectionStrategy<T> {
    click(_event: MouseEvent, data: T): void;
    keydown(event: KeyboardEvent, data: T): void;
}
