import { FormatTimeOptions } from '@zag-js/i18n-utils';
export interface FormatTimeProps extends FormatTimeOptions {
    /**
     * The time to format
     */
    value: string | Date;
}
export declare const FormatTime: {
    (props: FormatTimeProps): import("react/jsx-runtime").JSX.Element;
    displayName: string;
};
