import React from 'react'; import { type StyleProp, type TextInput as NativeTextInput, type ViewStyle } from 'react-native'; import { type DateInputOptions } from '@coinbase/cds-common/dates/useDateInput'; import { type TextInputBaseProps, type TextInputProps } from '../controls/TextInput'; export type DateInputBaseProps = Omit & Omit & { /** Date format separator character, e.g. the / in "MM/DD/YYYY". Defaults to forward slash (/). */ separator?: string; }; export type DateInputProps = DateInputBaseProps & Omit & { style?: StyleProp; }; export declare const DateInput: React.MemoExoticComponent< ({ ref, ..._props }: DateInputProps & { ref?: React.Ref; }) => import('react/jsx-runtime').JSX.Element >; //# sourceMappingURL=DateInput.d.ts.map