import { Component, ComponentProps } from "solid-js"; import { IconComponent } from "../types"; type ToastToggleProps = ComponentProps<"button"> & { xIcon?: IconComponent; }; export declare const ToastToggle: Component; export {};