import type { Duration } from "./ToastContext"; import type { ComponentProps, FC, PropsWithChildren } from "react"; export interface keepToastTheme { base: string; closed: string; removed: string; toggle: { base: string; }; } export interface ToastProps extends PropsWithChildren> { duration?: Duration; } export declare const Toast: FC & { Toggle: FC & import("react").ButtonHTMLAttributes & { xIcon?: import("react").ReactNode; }>; };