/** * 基础面板:--panel 底 + 1px --line 边,直角无阴影。表单、配置区的容器。 */ export interface PanelProps { children?: React.ReactNode; padding?: string | number; style?: React.CSSProperties; } export declare function Panel(props: PanelProps): JSX.Element;