import React from 'react'; import type { RootProps } from '../../engines/types'; export type ViewContainerCustomProps = { /** * Вид компонента */ view?: string; }; type ViewContainerProps = React.HTMLAttributes & ViewContainerCustomProps; export declare const viewContainerRoot: (Root: RootProps) => React.ForwardRefExoticComponent & ViewContainerCustomProps & React.RefAttributes>; export declare const viewContainerConfig: { name: string; tag: string; layout: (Root: RootProps) => React.ForwardRefExoticComponent & ViewContainerCustomProps & React.RefAttributes>; base: import("styled-components").FlattenSimpleInterpolation; variations: { view: { css: import("styled-components").FlattenSimpleInterpolation; }; }; defaults: { view: undefined; }; }; export {}; //# sourceMappingURL=ViewContainer.d.ts.map