declare type ShadowPlaygroundProps = { /** * The jsx to edit and render, as string. */ code: string; /** * Specifies globals to use inside the live editor. */ scope?: object; /** * Allows to render multiple components. */ noInline?: boolean; /** * The styles to include in the shadow root. */ styles?: string | CSSStyleSheet; }; /** * Encapsulated version of Playground component with support for shadow root styles. */ export declare const ShadowPlayground: { ({ code, scope, noInline, styles, ...props }: ShadowPlaygroundProps): JSX.Element; defaultProps: { noInline: boolean; }; }; export {};