import { ResizePropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface ResizeProps { /** * The **`resize`** CSS property sets whether an element is resizable, and if so, in which directions. * * @see https://developer.mozilla.org/docs/Web/CSS/resize */ style$Resize: T; } export declare const resize: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;