import type { AllowlistIdentifierJSON } from './JSON';
export declare class AllowlistIdentifier {
    readonly id: string;
    readonly identifier: string;
    readonly createdAt: number;
    readonly updatedAt: number;
    readonly invitationId?: string | undefined;
    constructor(id: string, identifier: string, createdAt: number, updatedAt: number, invitationId?: string | undefined);
    static fromJSON(data: AllowlistIdentifierJSON): AllowlistIdentifier;
}
//# sourceMappingURL=AllowlistIdentifier.d.ts.map