export interface ResoureOwnerTokenRequestJson {
    grant_type: 'password';
    client_id: string;
    username: string;
    password: string;
    extras?: Record<string, string>;
}
export default class ResoureOwnerTokenRequest {
    clientId: string;
    username: string;
    password: string;
    extras?: Record<string, string>;
    constructor(request: ResoureOwnerTokenRequestJson);
    toJson(): ResoureOwnerTokenRequestJson;
    toStringMap(): Record<string, string>;
}
//# sourceMappingURL=ResourceOwnerPasswordRequest.d.ts.map