import React from 'react';
import { HTMLCoralProps } from 'coral-system';
interface ShadowContainerProps extends HTMLCoralProps<'div'> {
/**
* 标签文本
*/
label?: string;
/**
* 类型
* effect - 用于副作用容器
* modal - 用于弹窗容器
*/
type?: 'effect' | 'modal';
/**
* 占位说明
*/
placeholder?: string;
children?: React.ReactNode;
}
/**
* 影子容器,适合特殊的的组件,例如状态容器,条件容器
*/
export declare function ShadowContainer({ type, label, placeholder, children, ...rest }: ShadowContainerProps): React.JSX.Element;
export {};