import { Signal } from "@builder.io/qwik"; import { Height, Position, type Toast as ToastType } from "./toast-context"; type ToastProps = { index: number; visibleToasts: number; expanded: boolean; expandByDefault: boolean; position: Position; heights: Signal; } & ToastType; export declare const Toast: import("@builder.io/qwik").Component; export {};