import React, { FC } from 'react'; export declare const LOGIN_SIGNUP_CLASSNAMES: string[]; export declare const LOGIN_SIGNUP_STYLE: React.CSSProperties; export declare type LoginSignupProps = { children?: React.ReactNode; style?: React.CSSProperties; overrideStyle?: boolean; classNames?: string[]; overrideClasses?: boolean; responsive?: boolean; which?: "login" | "signup"; onForgotPassword?: () => Promise; onLogin?: (params: { username: string; password: string; }) => Promise; onSignup?: (params: { username: string; password: string; passwordConfirmation: string; }) => Promise; }; export declare const LoginSignup: FC;