export interface GroupSelectOption {
    id: number;
    label: string;
    groupId?: string | number;
}
export interface GroupSelectGroupOption {
    id: number;
    label: string;
    options: GroupSelectOption[];
    groupId?: string | number;
}
export interface GroupSelectOptGroupOption {
    id: string;
    label: string;
}
export declare const fakeOptions: GroupSelectOption[];
export declare const fakeGroups: GroupSelectGroupOption[];
export declare const fakeOptGroups: GroupSelectOptGroupOption[];
