import { ScaleProperty } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface ScaleProps { /** * The **`scale`** CSS property allows you to specify scale transforms individually and independantly of the `transform` property. This maps better to typical user interface usage, and saves having to remember the exact order of transform functions to specify in the `transform` value. * * @see https://developer.mozilla.org/docs/Web/CSS/scale */ style$Scale: T; } export declare const scale: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;