import { DateDigit } from '../../types'; type Props = { anchorId?: string; onChange?: (value: string) => void; format?: `${DateDigit}/${DateDigit}/${DateDigit}` | `${DateDigit}/${DateDigit}`; hideLabels?: boolean; value?: string; separator?: string; error?: boolean; /** First segment only; use with FormGroup `renderControl` (e.g. `aria-describedby`). */ 'aria-describedby'?: string; 'aria-invalid'?: boolean | 'true' | 'false'; }; export default function Date({ format, hideLabels, anchorId, value, separator, onChange, error, 'aria-describedby': ariaDescribedBy, 'aria-invalid': ariaInvalid }: Props): import("react/jsx-runtime").JSX.Element; export {};