react-native-paper-dates
Version:
Performant Date Picker for React Native Paper
19 lines • 812 B
TypeScript
import type { ModeType, ValidRangeType } from './Calendar';
import type { LocalState } from './DatePickerModalContent';
declare function CalendarEdit({ mode, state, label, startLabel, endLabel, collapsed, onChange, validRange, locale, inputEnabled, withDateFormatInLabel, placeholder, }: {
mode: ModeType;
label?: string;
startLabel?: string;
endLabel?: string;
state: LocalState;
collapsed: boolean;
onChange: (s: LocalState) => any;
validRange: ValidRangeType | undefined;
locale: string;
inputEnabled?: boolean;
withDateFormatInLabel?: boolean;
placeholder?: string;
}): import("react/jsx-runtime").JSX.Element;
declare const _default: import("react").MemoExoticComponent<typeof CalendarEdit>;
export default _default;
//# sourceMappingURL=CalendarEdit.d.ts.map