import { HyphensPropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface HyphensProps { /** * The **`hyphens`** CSS property specifies how words should be hyphenated when text wraps across multiple lines. You can prevent hyphenation entirely, use hyphenation in manually-specified points within the text, or let the browser automatically insert hyphens where appropriate. * * @see https://developer.mozilla.org/docs/Web/CSS/hyphens */ style$Hyphens: T; } export declare const hyphens: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;