import * as React from 'react';
import { IABBUser, IABBUserProps } from "./IABB-user";
declare class ABBUser extends React.Component<IABBUserProps, IABBUser> {
    constructor(props: IABBUserProps);
    changePassword(oldPassword: string, newPassword: string, newPasswordSecond: string): void;
}
export { ABBUser };
