import React from "react"; export interface CompositionScopeContext { inherit: boolean; scope: string[]; } interface CompositionScopeProps { name: string; /** * Use this prop on components that are used to register decorators. * Components are inherited at the time of registration, and then cached. */ inherit?: boolean; children: React.ReactNode; } export declare const CompositionScope: ({ name, inherit, children }: CompositionScopeProps) => React.JSX.Element; export declare function useCompositionScope(): CompositionScopeContext; export {};