import type { FC } from 'react'; export interface TemporalPlaceholderProps { text: string; className?: string; } /** * Placeholder component for temporal inputs (date/time) when no value is selected. * Shows gray text that disappears when the input is focused. */ export declare const TemporalPlaceholder: FC;