export declare class DuoException extends Error {
    inner?: Error;
    constructor(message: string, error?: Error | null);
}
