UNPKG

@procore/core-react

Version:
19 lines (18 loc) 510 B
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[];