import { SvelteComponent } from "svelte"; import type { Background, LightBackground, DarkBackground } from '../enums.js'; declare const __propDef: { props: { color: Background | LightBackground | DarkBackground; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export type TuiBackgroundProps = typeof __propDef.props; export type TuiBackgroundEvents = typeof __propDef.events; export type TuiBackgroundSlots = typeof __propDef.slots; export default class TuiBackground extends SvelteComponent { } export {};