import { type HTMLCoralProps } from "coral-system";
import React from "react";
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 {};