import * as React from 'react'; export interface ISafeContainerProps { /** * @description 自定义类名 * @default */ className?: string; /** * @description 自定义样式 * @default */ style?: React.CSSProperties; } export declare function SafeContainer(props: React.PropsWithChildren): JSX.Element;