export declare type SelectedIndex = Array | number; export declare type NormalizedSelectedIndex = Array; export declare function normalizeIndex(indexes?: SelectedIndex): NormalizedSelectedIndex; export declare function toggleIndex(indexes: NormalizedSelectedIndex, target: number, multiple?: boolean): number[]; export declare function hasIndex(indexes: NormalizedSelectedIndex, index: number): boolean;