import { IconOptions, IconValue } from '@vexip-ui/config';
export declare function formatSeconds(seconds: number): string;
export declare function mergeIconScale(scale: number, icon: IconOptions & {
    icon: IconValue;
}): {
    scale: number;
    class?: import('@vexip-ui/config').ClassType;
    style?: import('@vexip-ui/config').StyleType;
    title?: string;
    label?: string;
    flip?: "horizontal" | "vertical" | "both";
    effect?: string;
    size?: string;
    color?: string;
    rotate?: number | string;
    icon: IconValue;
};
