import { CSSProperties } from 'react'; import { ShaftMoveLabel, ShaftTextStyle, TimeShaftDataMap } from '../type'; export declare const setStyle: (target: HTMLElement, style?: CSSProperties) => void; export declare const filterShaftData: (data: TimeShaftDataMap[]) => TimeShaftDataMap[]; export declare const getDomSzie: (style: ShaftTextStyle, text: string) => { containerHeight: number; containerWidth: number; }; export declare const getMoveTextStyle: (mode: string, progressSize: number, containerHeight: number, containerWidth: number, shaftMoveLabel: ShaftMoveLabel) => CSSProperties;