import type { LayoutProps } from '../../lib/layouts/types'; import { type RootComponentProps } from '../RootComponent/RootComponent'; export interface BoxProps extends Omit, 'baseClassName' | 'baseStyle'>, LayoutProps { /** * Возможность задать css-свойство `display`. */ display?: 'none' | 'inline' | 'inline-block' | 'block' | 'contents'; } /** * @see https://vkui.io/components/box * * @since 7.9.0 */ export declare const Box: ({ className, style, display, ...restProps }: BoxProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Box.d.ts.map