import { ToReact } from './helpers.types'; import { ZRangeDateInput } from '../range-date-input'; export type ZrRangeDateInput_Props = ToReact<'RangeDateInput'>; type ZrRangeDateInput_Type = React.ForwardRefExoticComponent & { ref?: React.ForwardedRef; } & { Label: typeof Label; HelpText: typeof HelpText; }; declare const Label: import('react').FC; declare const HelpText: import('react').FC; /** ### `` * (_for ⚛ React_) * */ declare const Namespace: ZrRangeDateInput_Type; export { Namespace as ZrRangeDateInput };