import * as React from 'react'; import type { BaseUIComponentProps } from "../../utils/types.js"; /** * A description that describes the toast. * Can be used as the default message for the toast when no title is provided. * Renders a `

` element. * * Documentation: [Base UI Toast](https://base-ui.com/react/components/toast) */ export declare const ToastDescription: React.ForwardRefExoticComponent>; export interface ToastDescriptionState { /** * The type of the toast. */ type: string | undefined; } export interface ToastDescriptionProps extends BaseUIComponentProps<'p', ToastDescription.State> {} export declare namespace ToastDescription { type State = ToastDescriptionState; type Props = ToastDescriptionProps; }