import React from 'react'; declare const FitText: { ({ children, maxFontSize, minFontSize, justifyContent, }: { children: React.ReactNode; maxFontSize?: number; minFontSize?: number; justifyContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly"; }): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default FitText;