import { BoxSizingPropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface BoxSizingProps { /** * The **`box-sizing`** CSS property sets how the total width and height of an element is calculated. * * @see https://developer.mozilla.org/docs/Web/CSS/box-sizing */ style$BoxSizing: T; } export declare const boxSizing: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;