export declare class NotificationSettings {
    'viewed'?: boolean;
    'sent'?: boolean;
    'deliveryFailed'?: boolean;
    'declined'?: boolean;
    'revoked'?: boolean;
    'reassigned'?: boolean;
    'completed'?: boolean;
    'signed'?: boolean;
    'expired'?: boolean;
    'authenticationFailed'?: boolean;
    'reminders'?: boolean;
    'attachSignedDocument'?: boolean;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
