export declare namespace number {
    namespace constant {
        const ten = 10;
        const hundred = 100;
        const thousand = 1000;
        const million: number;
        const billion: number;
        const trillion: number;
    }
}
