declare type SemanticWIDTHSNUMBER = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12; declare type SemanticWIDTHSSTRING = '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' | '10' | '11' | '12' | 'one' | 'two' | 'three' | 'four' | 'five' | 'six' | 'seven' | 'eight' | 'nine' | 'ten' | 'eleven' | 'twelve'; export declare type SemanticWIDTHS = SemanticWIDTHSNUMBER | SemanticWIDTHSSTRING; export declare type SemanticGridWIDTHS = SemanticWIDTHS | 13 | 14 | 15 | 16 | '13' | '14' | '15' | '16' | 'thirteen' | 'fourteen' | 'fifteen' | 'sixteen'; export declare function columnsToNumeral(value: any): any; export {};