import { ToReact } from './helpers.types'; import { ZSegmentedControl } from '../segmented-control'; export type ZrSegmentedControl_Props<_T extends string = string> = ToReact<'SegmentedControl'>; type ZrSegmentedControl_Type = React.ForwardRefExoticComponent & { ref?: React.ForwardedRef; } & { Option: typeof Option; }; declare const Option: import('react').FC; /** ### `` * (_for ⚛ React_) * */ declare const Namespace: ZrSegmentedControl_Type; export { Namespace as ZrSegmentedControl };