import { IContainer, ContainerBaseImpl } from "../gen/components/container.base.js"; import { BorderRadius, BoxShadow, BoxShape, LenraComponent } from '../gen/response.js'; import { Component } from './component.js'; export { IContainer }; export declare function Container(child?: Component | T): ContainerImpl; export declare namespace Container { var card: (child?: T | Component) => ContainerImpl; } export declare class ContainerImpl extends ContainerBaseImpl { child(child: T): any; width(width: number): this; minWidth(width: number): this; maxWidth(width: number): this; height(height: number): this; minHeight(height: number): this; maxHeight(height: number): this; borderRadius(borderRadius: BorderRadius): this; boxShadow(boxShadow: BoxShadow): this; color(color: number): this; shape(shape: BoxShape): this; }