import { ToReact } from './helpers.types'; import { ZSelect } from '../select'; export type ZrSelect_Props<_T extends string = string> = ToReact<'Select'>; type ZrSelect_Type = React.ForwardRefExoticComponent & { ref?: React.ForwardedRef; } & { Label: typeof Label; HelpText: typeof HelpText; Option: typeof Option; }; declare const Label: import('react').FC; declare const HelpText: import('react').FC; declare const Option: import('react').FC; /** ### `` * (_for ⚛ React_) * */ declare const Namespace: ZrSelect_Type; export { Namespace as ZrSelect };