@appbuckets/react-ui-forms
Version:
An utilities package to manage and create Form using AppBuckets ReactUI
14 lines (13 loc) • 540 B
TypeScript
import { DayPickerProps } from '@appbuckets/react-ui/DayPicker';
import type { HookedFieldProps } from '../utils/createHookedField.types';
declare type HookedDayPickerValueType = Date | null;
export declare type HookedDayPickerProps = HookedFieldProps<
DayPickerProps,
HookedDayPickerValueType
>;
declare const HookedDayPicker: import('../utils/createHookedField.types').HookedFieldComponent<
DayPickerProps<import('@appbuckets/react-ui/DayPicker').ParsableDate>,
null,
HookedDayPickerValueType
>;
export default HookedDayPicker;