import { type ReactNode } from 'react'; export interface ToastDescriptionProps { children: ReactNode; } /** * Description component for Toast. * * Displays secondary description text with regular weight and secondary color. * Supports text truncation with configurable max lines. * Shows a tooltip with full text when content is truncated. */ export declare const ToastDescription: import("react").ForwardRefExoticComponent>;