import * as React from 'react'; import './SandboxBanner.scss'; declare type Props = { children: React.ReactChild; }; declare const SandboxBanner: ({ children }: Props) => JSX.Element; export default SandboxBanner;