import * as React from 'react';
import type { BaseUIComponentProps } from "../../utils/types.js";
/**
* A container for the contents of a toast.
* Renders a `
` element.
*
* Documentation: [Base UI Toast](https://base-ui.com/react/components/toast)
*/
export declare const ToastContent: React.ForwardRefExoticComponent>;
export interface ToastContentState {
/**
* Whether the toast viewport is expanded.
*/
expanded: boolean;
/**
* Whether the toast is behind the frontmost toast in the stack.
*/
behind: boolean;
}
export interface ToastContentProps extends BaseUIComponentProps<'div', ToastContent.State> {}
export declare namespace ToastContent {
type State = ToastContentState;
type Props = ToastContentProps;
}