import { TimeData, TdUseCountDownShowTimes } from './type';
export declare const TimeDataUnit: {
    DD: string;
    HH: string;
    mm: string;
    ss: string;
    SSS: string;
};
export declare const getRemainTimes: (time?: number) => TimeData;
export declare const fillZero: (num: number, isMillieconds?: boolean) => string | number;
export declare const getMark: (format: string, type: string) => string;
export declare const getShowTimes: (times: TimeData, format: string, millisecond?: boolean, splitWithUnit?: boolean) => TdUseCountDownShowTimes;
export declare const getScreenFps: (targetCount?: number) => Promise<unknown>;
