import * as React from 'react'; import { TwoTonedIcon } from '../iconTypes'; interface SandboxesInterstitialStateProps extends TwoTonedIcon { primaryColor?: string; secondaryColor?: string; } declare const SandboxesInterstitialState: ({ className, height, primaryColor, secondaryColor, title, width, }: SandboxesInterstitialStateProps) => React.JSX.Element; export default SandboxesInterstitialState;