import { type QwikJSX, type Signal } from "@qwik.dev/core"; import type { ISODate } from "./types"; import type { DateSegment } from "./types"; export declare const dateInputFieldContextId: import("@qwik.dev/core").ContextId; export type DateInputFieldContext = { dateSig: Signal; dayOfMonthSegmentSig: Signal; monthSegmentSig: Signal; yearSegmentSig: Signal; fieldId: string; name?: string; required?: boolean; value?: string; disabledSig: Signal; isInternalSegmentClearance: Signal; separator?: string | QwikJSX.Element; };