import React, { ComponentPropsWithRef } from "react"; import { IconProps } from "../../icons"; import { AvatarProps } from "../Avatar"; import { FlexProps } from "../Flex"; import { ItemSide } from "../Item"; /** * A succinct message that is displayed temporarily. */ export type ToastProps = FlexProps; export declare const ToastSuccessIcon: (props: IconProps) => React.JSX.Element; export declare const ToastErrorIcon: (props: IconProps) => React.JSX.Element; export declare const Toast: (({ className, ...props }: ToastProps) => React.JSX.Element) & { Avatar: ({ size, className, ...props }: AvatarProps) => React.JSX.Element; Content: ({ className, ...rest }: import("..").VerticalAlignedProps) => React.JSX.Element; Title: React.ForwardRefExoticComponent, HTMLSpanElement>, "ref"> & { asChild?: boolean; } & import("tailwind-variants").VariantProps>> & import("../..").TextColorVariantProps & React.RefAttributes, "ref"> & React.RefAttributes>; Description: React.ForwardRefExoticComponent, HTMLSpanElement>, "ref"> & { asChild?: boolean; } & import("tailwind-variants").VariantProps>> & import("../..").TextColorVariantProps & React.RefAttributes, "ref"> & React.RefAttributes>; Side: ({ className, ...props }: ComponentPropsWithRef) => React.JSX.Element; Action: ({ className, ...rest }: import("..").FlexColumnProps) => React.JSX.Element; SuccessIcon: (props: IconProps) => React.JSX.Element; ErrorIcon: (props: IconProps) => React.JSX.Element; }; //# sourceMappingURL=Toast.d.ts.map