/** * This file bundle custom `styled-system` css properties adapters that are not * included in the library. If a property in this file is made available in the * library, it should be removed from here. */ export declare const textDecoration: import("styled-system").styleFn; export type TextDecorationProps = { textDecoration?: string; }; export declare const textTransform: import("styled-system").styleFn; export type TextTransformProps = { textTransform?: 'capitalize' | 'lowercase' | 'uppercase' | 'none'; }; export declare const whiteSpace: import("styled-system").styleFn; type WhiteSpaceValues = 'normal' | 'nowrap' | 'pre' | 'pre-line' | 'pre-wrap' | 'initial' | 'inherit'; export type WhiteSpaceProps = { whiteSpace?: WhiteSpaceValues; }; export declare const wordBreak: import("styled-system").styleFn; export type WordBreakProps = { wordBreak?: 'normal' | 'break-all' | 'keep-all' | 'break-word' | 'initial' | 'inherit'; }; export declare const overflowWrap: import("styled-system").styleFn; export type OverflowWrapProps = { overflowWrap?: 'normal' | 'anywhere' | 'break-word' | 'initial' | 'inherit'; }; export declare const cursor: import("styled-system").styleFn; export type CursorProps = { cursor?: string; }; export declare const overflow: import("styled-system").styleFn; export type OverflowProps = { overflow?: 'visible' | 'hidden' | 'scroll' | 'auto' | 'initial' | 'inherit'; }; export declare const resize: import("styled-system").styleFn; export type ResizeProps = { resize?: 'none' | 'both' | 'horizontal' | 'vertical' | 'initial' | 'inherit'; }; export declare const pointerEvents: import("styled-system").styleFn; export type PointerEventsProps = { pointerEvents?: 'auto' | 'none' | 'initial' | 'inherit'; }; export declare const float: import("styled-system").styleFn; export type FloatProps = { float?: 'left' | 'right' | 'none' | 'initial' | 'inherit'; }; export declare const clear: import("styled-system").styleFn; export type ClearProps = { clear?: 'left' | 'right' | 'both' | 'none' | 'initial' | 'inherit'; }; export declare const listStyle: import("styled-system").styleFn; export type ListStyleProps = { listStyle?: string; }; export {};