import React, { Component } from 'react'; import { ShellProps as NextShellProps } from '@alifd/next/types/shell'; interface ShellProps extends NextShellProps { size?: 'large' | 'medium' | 'small'; } declare class Shell extends Component { static Branding: React.ComponentType; static Navigation: React.ComponentType; static Action: React.ComponentType; static MultiTask: React.ComponentType; static LocalNavigation: React.ComponentType; static AppBar: React.ComponentType; static Content: React.ComponentType; static Footer: React.ComponentType; static Ancillary: React.ComponentType; static ToolDock: React.ComponentType; static ToolDockItem: React.ComponentType; render(): JSX.Element; } declare const _default: typeof Shell; export default _default;