import { SelectOptionProps } from '../SelectOption';

export interface GroupOptions {
    groups: GroupOption[];
    itemsCount: number;
    hasGroups: boolean;
}
export interface GroupOption {
    offset: number;
    index: number;
    items: SelectOptionProps[];
    name: string;
}
export declare function getGroups(options: SelectOptionProps[]): GroupOptions;
