UNPKG

@upv/react-ui-core

Version:

**USHI Design System — Modern UI Component Library**

12 lines (11 loc) 312 B
import React from "react"; export interface CountrySelectorProps { label?: string; placeholder?: string; value?: string; onChange: (value: string) => void; error?: string; disabled?: boolean; required?: boolean; } export declare const CountrySelector: React.FC<CountrySelectorProps>;