import { PureComponent, ReactNode } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; import { ModuleAuthRegisterInterfaceProps } from "./ModuleAuthRegister"; export interface ModulePageAuthRegisterInterfaceProps extends PropsInterface, ModuleAuthRegisterInterfaceProps { authChildren?: ReactNode; right?: ReactNode; } export declare class ModulePageAuthRegister extends PureComponent { constructor(props: any); render(): JSX.Element; }