export declare type justify = 'start' | 'center' | 'end' | 'around' | 'between'; export declare type align = 'top' | 'middle' | 'bottom'; export declare type span = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12; export declare type offset = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12; export declare type row = { justify?: justify; align?: align; }; export declare type col = { span?: span; offset?: offset; };