@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
13 lines (12 loc) • 441 B
TypeScript
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;