import "./styles.css"; import { CSSProperties } from "@builder.io/qwik"; import { Position } from "./toast-context"; type ToasterProps = { class?: string; theme?: "light" | "dark"; hotkey?: string[]; position?: Position; richColors?: boolean; style?: CSSProperties; visibleToasts?: number; }; export declare const GAP = 14; export declare const Toaster: import("@builder.io/qwik").Component; export {};