export declare class PermitError extends Error {
    cause?: Error;
    constructor(message: string, options?: {
        cause?: Error;
    });
}
