import { Style } from './Style';
import type { IStyleOption } from '../../ts-types';
export declare class NumberStyle extends Style {
    static get DEFAULT(): NumberStyle;
    constructor(style?: IStyleOption, bodyStyle?: IStyleOption);
    clone(): NumberStyle;
}
