import { OverflowWrapPropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface OverflowWrapProps { /** * The `**overflow-wrap**` CSS property applies to inline elements, setting whether the browser should insert line breaks within an otherwise unbreakable string to prevent text from overflowing its line box. * * @see https://developer.mozilla.org/docs/Web/CSS/overflow-wrap */ style$OverflowWrap: T; } export declare const overflowWrap: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;