import { Text } from 'react-native'; import type { ToastRootState } from '../root/ToastRoot'; import type { ZestUIComponentProps } from '../../types'; /** * A title that labels the toast. * Renders a `` with a heading role. * * Falls back to the toast's `title` when given no children. */ export declare function ToastTitle(componentProps: ToastTitle.Props): import("react").ReactElement> | null; export interface ToastTitleState extends ToastRootState { } export interface ToastTitleProps extends ZestUIComponentProps { } export declare namespace ToastTitle { type State = ToastTitleState; type Props = ToastTitleProps; } //# sourceMappingURL=ToastTitle.d.ts.map