import * as React from 'react';
import type { BaseUIComponentProps } from "../../utils/types.js";
/**
* A title that labels the toast.
* Renders an `
` element.
*
* Documentation: [Base UI Toast](https://base-ui.com/react/components/toast)
*/
export declare const ToastTitle: React.ForwardRefExoticComponent>;
export interface ToastTitleState {
/**
* The type of the toast.
*/
type: string | undefined;
}
export interface ToastTitleProps extends BaseUIComponentProps<'h2', ToastTitle.State> {}
export declare namespace ToastTitle {
type State = ToastTitleState;
type Props = ToastTitleProps;
}