export declare type Owner = Organization | User;
export declare class User {
    readonly userId: string;
    readonly type = "owner.user";
    constructor(userId: string);
    toString(): string;
}
export declare class Organization {
    readonly organizationId: string;
    readonly type = "owner.organization";
    constructor(organizationId: string);
    toString(): string;
}
