import React from "react"; import "./index.less"; interface Props { children: React.ReactNode; maxWidth: number; className?: string; style?: React.CSSProperties; } export declare const OverflowableText: ({ children, style, maxWidth, className }: Props) => React.JSX.Element; export {};