import { AnyRecord, IJSX, StyledComponentProps } from '@codeleap/styles'; import { TimeInputProps } from './types'; export * from './styles'; export * from './types'; /** * The picker is always rendered in `mode='time'` and `theme='light'` regardless of system theme; * dark mode is not forwarded to the native `react-native-date-picker` wheel. * Default format `'hh:mm A'` is 12-hour with AM/PM — pass `format='HH:mm'` for 24-hour display. */ export declare const TimeInput: { (props: TimeInputProps): import("react/jsx-runtime").JSX.Element; styleRegistryName: string; elements: string[]; rootElement: string; withVariantTypes(styles: S): (props: StyledComponentProps) => IJSX; defaultProps: Partial; }; //# sourceMappingURL=index.d.ts.map