import React from "react"; import { AdminAppContext } from "../../context"; import "./index.less"; export interface ExpandableProps { expanded: boolean; } export interface Props extends ExpandableProps { src: string; } export declare class SquareLogo extends React.PureComponent { static displayName: string; static contextType: React.Context; context: React.ContextType; render(): React.JSX.Element; }