import { SvelteComponentTyped } from "svelte"; import { type State } from "./_utils.js"; declare const __propDef: { props: { [x: string]: any; class?: string; mediaTag?: string; state?: State; style?: string | Record; }; events: { statechange: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export type TwicBackgroundProps = typeof __propDef.props; export type TwicBackgroundEvents = typeof __propDef.events; export type TwicBackgroundSlots = typeof __propDef.slots; export default class TwicBackground extends SvelteComponentTyped { } export {};