import { Text } from 'react-native'; import type { ToastRootState } from '../root/ToastRoot'; import type { ZestUIComponentProps } from '../../types'; /** * A description that gives the toast more detail. * Renders a ``. * * Falls back to the toast's `description` when given no children. */ export declare function ToastDescription(componentProps: ToastDescription.Props): import("react").ReactElement> | null; export interface ToastDescriptionState extends ToastRootState { } export interface ToastDescriptionProps extends ZestUIComponentProps { } export declare namespace ToastDescription { type State = ToastDescriptionState; type Props = ToastDescriptionProps; } //# sourceMappingURL=ToastDescription.d.ts.map