import React from 'react'; /** * Snugly resizes text to fit its parent container width */ export declare const ReactFitty: React.ForwardRefExoticComponent & { children?: React.ReactNode; minSize?: number | undefined; maxSize?: number | undefined; wrapText?: boolean | undefined; } & React.RefAttributes>;