import { type DateFormatContextValue } from './context'; /** * Read the active date-segment order and hour cycle. * * Does **not** throw when called outside `DateFormatProvider` — formats are * an optional app-level concern, so the hook falls back to `day-first` * order and locale-driven hour cycle (`hourCycle: undefined`). This keeps * every DS temporal input working out of the box in apps that haven't * mounted the provider. */ export declare const useDateFormat: () => DateFormatContextValue;