import { TextJustifyPropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface TextJustifyProps { /** * The **`text-justify`** CSS property sets what type of justification should be applied to text when `text-align``: justify;` is set on an element. * * @see https://developer.mozilla.org/docs/Web/CSS/text-justify */ style$TextJustify: T; } export declare const textJustify: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;