import { SvelteComponentTyped } from "svelte"; import type { CSSColorString } from '../../types'; import type { BackgroundStyles } from '../../types/general'; declare const __propDef: { props: { style?: BackgroundStyles; gridWidth?: number; dotSize?: number; bgColor?: CSSColorString | null; dotColor?: CSSColorString | null; opacityThreshold?: number; majorGrid?: number; /** * @default 0.4 * @description The minimum opacity of the background grid */ minOpacity?: number; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type BackgroundProps = typeof __propDef.props; export type BackgroundEvents = typeof __propDef.events; export type BackgroundSlots = typeof __propDef.slots; export default class Background extends SvelteComponentTyped { } export {};