interface TextRendererProps {
    content: string;
    mimeType: string;
    fileExtension?: string;
    maxHeight?: number;
    showControls?: boolean;
}
/**
 * Native text content renderer with syntax highlighting and controls
 */
export declare function TextRenderer({ content, mimeType, fileExtension, maxHeight, showControls }: TextRendererProps): import("react/jsx-runtime").JSX.Element;
export default TextRenderer;
//# sourceMappingURL=TextRenderer.d.ts.map