import * as React from "react";
import { Request_LoginAccount } from "../../shared/api";
export type ValueAndError = {
    value?: string;
    error?: string;
};
type State<T> = {
    data: Partial<T>;
};
type Props<T> = {
    validate?: (data: Partial<T>) => string | undefined;
};
export declare class Component_Login extends React.Component<Props<Request_LoginAccount>, State<Request_LoginAccount>> {
    state: {
        data: Partial<Request_LoginAccount>;
    };
    render(): React.JSX.Element;
    private onValueChanged;
    private loginClicked;
}
export {};
