import type { Iso8601Date, UnixTimestampInSeconds } from '@prezly/theme-kit-intl';
export type Optional<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>;
export declare function toDate(value: Date | Iso8601Date | UnixTimestampInSeconds): Date;
