import { PureComponent, ReactNode } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; import { ModuleAuthLoginInterfaceProps } from "./ModuleAuthLogin"; export interface ModulePageAuthLoginInterfaceProps extends PropsInterface, ModuleAuthLoginInterfaceProps { authChildren?: ReactNode; right?: ReactNode; } export declare class ModulePageAuthLogin extends PureComponent { constructor(props: any); render(): JSX.Element; }