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