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; /** * CSS aspect-ratio for the image (e.g. "4/3", "16/9", "1"). Defaults to natural image ratio. */ aspectRatio?: string; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'cre8-feature': Cre8Feature; } } export default Cre8Feature; //# sourceMappingURL=feature.d.ts.map