import React from 'react'; import { TemplateType } from '../../templates'; export type Props = { sandbox: { picks?: Array<{ title: string; description: string; }>; title: string; description: string; id: string; screenshot_url: string; template: TemplateType; author: { username: string; avatar_url: string; }; }; small?: boolean; noHeight?: boolean; defaultHeight?: number; noMargin?: boolean; selectSandbox: (params: { id: string; title: string; description: string; screenshotUrl: string; }) => void; }; export default class WideSandbox extends React.PureComponent { state: { imageLoaded: boolean; }; getTitle: () => string; getDescription: () => string; toggleOpen: () => void; handleKeyUp: (e: any) => void; render(): JSX.Element; }