react-native-time-date-picker
Version:
Easy to use time and date picker with lots of options for React Native.
12 lines (11 loc) • 424 B
TypeScript
import React from "react";
import { utils } from "../utils";
import { IOptions, ITimeDatePickerProps } from "../utils/types";
export declare const defaultOptions: IOptions;
interface IContextValueProps extends ITimeDatePickerProps {
utils: utils;
state: any;
}
declare const useCalendar: () => IContextValueProps;
declare const TimeDatePicker: React.FC<ITimeDatePickerProps>;
export { TimeDatePicker, useCalendar };