import { UseDatePropsResult } from './types'; /** * Handles date properties and conversions. * * `type` is the date input type, `isUTC` indicates whether to handle the date as UTC, and the * options carry the date value, the toggle to switch between UTC and local time, and the change * callback. Returns the processed date value and an onChange handler. */ export declare function useDateProps(type: 'date' | 'date-time', isUTC: boolean, { value, toggle, onChange, }: { value: string | undefined; toggle: () => void; onChange: (value: string | undefined) => void; }): UseDatePropsResult;