export interface RecordItem {
    begintime: number;
    endtime: number;
}
export declare const filterQueryRecordArr: (arr: Array<{
    begintime: string;
    endtime: string;
}>) => RecordItem[];
export declare const formatTimeStr: (time: number, fix?: boolean) => string;
export declare const formatTimeClock: (time: number) => string;
