import React from "react"; interface FormatTimeProps { /** * Time (as JS Date) to be displayed. * * A `string` should be an ISO 8601 format date string. */ readonly time: Date | string; /** * Optionally specify clock format. If `undefined` system format will be respected. */ readonly use24HourClock?: boolean; } export declare function FormatTime({ time: inputTime, use24HourClock, }: FormatTimeProps): React.JSX.Element; export {};