export declare class RecipientNotificationSettings {
    'signatureRequest'?: boolean;
    'declined'?: boolean;
    'revoked'?: boolean;
    'signed'?: boolean;
    'completed'?: boolean;
    'expired'?: boolean;
    'reassigned'?: boolean;
    'deleted'?: boolean;
    'reminders'?: boolean;
    'editRecipient'?: boolean;
    'editDocument'?: boolean;
    'viewed'?: boolean;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
