@prezly/theme-kit-react
Version:
Data layer and utility library for developing Prezly themes with NextJS
7 lines (6 loc) • 324 B
TypeScript
import { BaseFormattedDate } from './BaseFormattedDate';
import type { Optional } from './utils';
export declare function FormattedDate(props: FormattedDate.Props): import("react/jsx-runtime").JSX.Element;
export declare namespace FormattedDate {
type Props = Optional<BaseFormattedDate.Props, 'locale' | 'timezone'>;
}