import { type PortalProps } from "./Portal"; export interface OptionalPortalProps extends PortalProps { /** Determines whether children should be rendered inside `` * @default true */ withinPortal?: boolean; } /** 根据withinPortal属性决定是否作为portal渲染 */ export declare function OptionalPortal(props: OptionalPortalProps): import("react").JSX.Element;