import { Animated } from 'react-native'; import { type NativeDatePicker } from './nativeDatePicker'; /** * The date picker in the keyboard's slot (1844:17543). * * iOS draws its calendar inline, so the panel is a surface the step gives up * room for. Android opens a dialog over everything instead — the same * component, mounted with nothing reserved for it. */ export declare function FiatDatePickerDock({ Picker, value, isDark, isOpen, slide, onChangeValue, onDismiss, }: { Picker: NativeDatePicker; /** The answer held so far, in the wire format. */ value: string; isDark: boolean; isOpen: boolean; /** 0 closed, 1 open — what slides the panel in off the bottom edge. */ slide: Animated.AnimatedValue; onChangeValue: (value: string) => void; /** * The user closed the picker without choosing. Android's dialog closes * itself, and the module re-shows a dialog that is still mounted on the next * render — so the holder has to hear about it and unmount. */ onDismiss?: () => void; }): import("react").JSX.Element | null; //# sourceMappingURL=FiatDatePickerDock.d.ts.map