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