export interface Styles { 'color': "black" | "blue" | "red" | "green" | "white" | "gray" | "lightblue" | "lightyellow" | "initial"; 'background-color': "white" | "black" | "ghostwhite" | "peachpuff" | "khaki" | "gray" | "lightgray" | "initial"; 'line-height': "1" | "1.5" | "2" | "3.5" | "initial"; 'word-spacing': "10px" | "normal" | "-2px" | "initial"; 'font-size': "1em" | "10%" | "25%" | "50%" | "75%" | "100%" | "125%" | "150%" | "200%" | "400%" | "initial"; 'font-family': "'Roboto'" | "serif" | "sans-serif" | "monospace" | "initial" | string; 'text-align': "left" | "right" | "center" | "justify" | "initial" | "inherit"; 'animation': string; } export declare enum Tags { "p" = 0, "h1" = 1, "h2" = 2, "h3" = 3, "h4" = 4, "h5" = 5, "h6" = 6, "div" = 7, "body" = 8 } //# sourceMappingURL=types.d.ts.map