/** * Returns the value and onChange handler for a time input. * * `withSeconds` controls whether the value includes seconds. */ export declare function useTimeProps(params: { value?: string; onChange?: (value?: string) => void; withSeconds?: boolean; }): { value: string; onChange: (value: string) => void; };