/** @description Basic structure for credentials */
export declare class Credentials {
    /** @description The username, used as the unique identifier for the account */
    username: string;
    /** @description The password that will be sent in future requests */
    password: string;
}
