import React, { PureComponent, ReactElement } from 'react'; interface PureLayoutProps { layout: string; children: ReactElement; } export declare class PureLayout extends PureComponent { static layouts: Record; static reset: () => void; static setLayout: (key: string, component: React.ComponentClass) => void; render(): JSX.Element; } export {};