baseui
Version:
A React Component library implementing the Base design language
7 lines (6 loc) • 356 B
TypeScript
import * as React from 'react';
import type { CountrySelectDropdownProps } from './types';
declare const CountrySelectDropdownFwd: React.ForwardRefExoticComponent<CountrySelectDropdownProps & {
$forwardedRef: React.Ref<HTMLElement> | ((a: null | HTMLElement) => unknown);
} & React.RefAttributes<HTMLElement>>;
export default CountrySelectDropdownFwd;