import { formatDate, PeriodType } from './date';
type DateDisplayOptions = {
    periodType?: PeriodType | null;
    variant?: Parameters<typeof formatDate>[2];
    format?: string;
    utc?: boolean;
};
export declare function dateDisplay(value: Date | string | number | null | undefined, options?: DateDisplayOptions): string;
export {};
