@atlaskit/select
Version:
Select allows users to make a single selection or multiple selections from a list of options.
19 lines (18 loc) • 360 B
TypeScript
interface Country {
abbr: string;
code: string;
icon: string;
name: string;
suggested?: boolean;
}
export declare const groupedCountries: readonly [
{
readonly label: 'Suggested';
readonly options: Country[];
},
{
readonly label: 'All Countries';
readonly options: Country[];
}
];
export {};