import { LitElement } from 'lit'; /** * Slotted surface with a repeated image or CSS background. * * @slot - Page or section content. * @csspart chrome - The tiled background surface. * @csspart content - Content wrapper. */ export declare class W1cTiledBackground extends LitElement { src: string; color: string; tileSize: string; render(): import("lit").TemplateResult<1>; static styles: import("lit").CSSResult; } declare global { interface HTMLElementTagNameMap { 'w1c-tiled-background': W1cTiledBackground; } }