UNPKG

react-hook-form-mantine

Version:
5 lines (4 loc) 510 B
import { FieldValues, UseControllerProps } from 'react-hook-form'; import { InlineDateTimePickerProps as $InlineDateTimePickerProps } from '@mantine/dates'; export type InlineDateTimePickerProps<T extends FieldValues> = UseControllerProps<T> & Omit<$InlineDateTimePickerProps, "value" | "defaultValue">; export declare function InlineDateTimePicker<T extends FieldValues>({ name, control, defaultValue, rules, shouldUnregister, onChange, ...props }: InlineDateTimePickerProps<T>): import("react").JSX.Element;