import React, { ReactNode } from 'react'; import { AvatarProps, ImageProps } from 'tdesign-react/esm'; import './style.css'; export interface MediaTextProps { children?: ReactNode; size?: 'default' | 'small'; } declare const MediaTextAvatar: { (props: AvatarProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; interface MediaTextImageProps extends ImageProps { width?: string | number; height?: string | number; statsSize?: string | number; Images?: string[]; } declare const MediaTextImage: { (props: MediaTextImageProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; interface MediaTextTitleProps { children?: ReactNode; } declare const MediaTextTitle: { ({ children }: MediaTextTitleProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; declare const MediaTextDesc: { ({ children }: { children?: ReactNode; }): import("react/jsx-runtime").JSX.Element; displayName: string; }; export declare const MediaText: React.ForwardRefExoticComponent> & { Avatar: typeof MediaTextAvatar; Image: typeof MediaTextImage; Title: typeof MediaTextTitle; Desc: typeof MediaTextDesc; }; export {};