export declare class LaColorService { private _colors; constructor(); /** * Returns HEX or rgba color. ex.: #f62d49, rgba(3, 20, 34, 0.8) */ getColorByName(name: string): string; getColorNames(): string[]; /** * Need to convert hex to rba for secondary button */ hexToRgb(hex: string, alpha: any): string; }