import type { DateElement, TimeElement } from '../../../../types'; export interface TemporalVariableEditorProps { type: 'date' | 'time'; name: string; element: DateElement | TimeElement | undefined; ref: React.Ref<{ getValue: () => string; }>; } export declare function TemporalVariableEditor({ type, ref, }: TemporalVariableEditorProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=TemporalVariableEditor.d.ts.map