export declare class GroupSigner {
    'id'?: string | null;
    'signerEmail'?: string | null;
    'signerName'?: string | null;
    'status'?: GroupSigner.StatusEnum;
    'isViewed'?: boolean;
    'isDeliveryFailed'?: boolean;
    'isAuthenticationFailed'?: boolean | null;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
export declare namespace GroupSigner {
    enum StatusEnum {
        None,
        NotCompleted,
        Completed,
        Declined,
        Revoked,
        Expired
    }
}
