import { ElementRef, Renderer2 } from '@angular/core'; /** * Directive for setting theme color to a element, color comes from * a local stylesheet * * @use as an attribute: lcuColor="primary-A700", sets the class * .primary-A700 {} to the host element */ /** * SCSS class types */ export declare class ThemeColorDirective { protected element: ElementRef; protected renderer: Renderer2; /** * Set the current theme class to the element */ set lcuThemeColor(val: string); constructor(element: ElementRef, renderer: Renderer2); /** * Get the value of a specific style property * * @param property style property */ protected readProperty(property: string): void; } //# sourceMappingURL=theme-color.directive.d.ts.map