import { AllPropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface AllProps { /** * The `**all**` shorthand CSS property resets all of an element's properties (except `unicode-bidi` and `direction`). It can set properties to their initial or inherited values, or to the values specified in another stylesheet origin. * * @see https://developer.mozilla.org/docs/Web/CSS/all */ style$All: T; } export declare const all: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;