import { Component } from 'react'; declare const ContainerTypes: readonly ["fluid", "responsive"]; export interface ContainerProps { /** * 自定义 class */ className?: string; /** * 容器类型 */ type?: (typeof ContainerTypes)[number]; } export declare class Container extends Component { static displayName: string; static defaultProps: { className: string; type: string; }; get className(): string; render(): import("react/jsx-runtime").JSX.Element; } export {};