import type { ValueStringProps as StringValueProps } from '../String';
import type { AnyLocale } from '../../../../shared/Context';
export type ValueDateProps = StringValueProps & {
    variant?: 'long' | 'short' | 'numeric';
    locale?: AnyLocale;
    dateFormat?: string;
};
declare function DateComponent(props: ValueDateProps): import("react/jsx-runtime").JSX.Element;
export default DateComponent;
