import * as React from "react";
export declare type ScopeProps = {
    name: string;
    children?: React.ReactNode;
};
export declare const Scope: React.ForwardRefExoticComponent<{
    children?: React.ReactNode;
} & ScopeProps & React.RefAttributes<any>>;
