import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; import { FormInterfaceProps } from "../Form"; import { OnChangeEventType } from "../../interfaces/types/OnChangeEventType"; import { ButtonInterfaceProps } from "../Button"; export interface ModuleAuthRegisterInterfacePropsInput { value: string; onChange: OnChangeEventType; placeholder: string; } export interface ModuleAuthRegisterInterfaceProps extends PropsInterface, FormInterfaceProps { size?: string; logo: string; allowFullScreen?: boolean; title: string; form: { name: ModuleAuthRegisterInterfacePropsInput; email: ModuleAuthRegisterInterfacePropsInput; password: ModuleAuthRegisterInterfacePropsInput; button: ButtonInterfaceProps; top?: any; bottom?: any; }; fluid?: boolean; } export declare class ModuleAuthRegister extends PureComponent { constructor(props: any); render(): JSX.Element; }