@atlaskit/select
Version:
Select allows users to make a single selection or multiple selections from a list of options.
11 lines (10 loc) • 336 B
TypeScript
/**
* @jsxRuntime classic
* @jsx jsx
*/
import type { JSX } from 'react';
import { groupedCountries } from './data/countries';
import { type SelectProps } from './types';
type Country = (typeof groupedCountries)[number]['options'][number];
export declare const CountrySelect: (props: SelectProps<Country>) => JSX.Element;
export {};