import * as React from "react"; declare const BACKGROUNDS: { readonly none: string; readonly primary: string; readonly secondary: string; readonly tertiary: string; readonly floating: string; }; declare const BORDERS: { readonly none: string; readonly subtle: string; readonly strong: string; }; declare const ELEVATIONS: { readonly none: string; readonly low: string; readonly medium: string; readonly high: string; }; declare const RADII: { readonly none: string; readonly small: string; readonly medium: string; readonly large: string; readonly xlarge: string; }; export type Background = keyof typeof BACKGROUNDS; export type Border = keyof typeof BORDERS; export type Elevation = keyof typeof ELEVATIONS; export type Radius = keyof typeof RADII; export interface BoxProps extends React.PropsWithChildren { background?: Background; border?: Border; elevation?: Elevation; radius?: Radius; className?: string; } export declare const Box: React.ForwardRefExoticComponent>; export {}; //# sourceMappingURL=Box.d.ts.map