import { FC } from 'react';
import { DurationFormatTypes } from './utils';
export interface DurationProps {
    /**
     * Size to pass to the formatter.
     */
    value: DurationFormatTypes;
    /**
     * If the value is undefined/null it will return this value.
     * @default 'N/A'
     */
    emptyValue?: string;
    /**
     * If the value is 0 it will return this value. Default to '0 ms'
     * @default '0 ms'
     */
    zeroValue?: string;
}
export declare const Duration: FC<DurationProps>;
