import { Cre8Element } from '../cre8-element'; /** * @slot - The component content */ export declare class Cre8Feature extends Cre8Element { static styles: import("lit").CSSResult[]; /** * Image source */ imgSrc?: string; /** * Image alt text */ imgAlt?: string; /** * Inverted variant * 1) Used for dark backgrounds */ inverted?: boolean; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'cre8-feature': Cre8Feature; } } export default Cre8Feature; //# sourceMappingURL=feature.d.ts.map