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, type TextInputSize, } 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; /** * Controls the vertical density (size) of the input field. * @default 'l' */ size?: TextInputSize; /** * Enables a smaller, compact input. * @deprecated Use `size="s"` instead. This will be removed in a future major release. * @deprecationExpectedRemoval v10 */ compact?: boolean; }; 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