import type { SamlAccountJSON } from './JSON';
import { Verification } from './Verification';
export declare class SamlAccount {
    readonly id: string;
    readonly provider: string;
    readonly providerUserId: string | null;
    readonly active: boolean;
    readonly emailAddress: string;
    readonly firstName: string;
    readonly lastName: string;
    readonly verification: Verification | null;
    constructor(id: string, provider: string, providerUserId: string | null, active: boolean, emailAddress: string, firstName: string, lastName: string, verification: Verification | null);
    static fromJSON(data: SamlAccountJSON): SamlAccount;
}
//# sourceMappingURL=SamlAccount.d.ts.map