export declare class ConfigurationError extends Error { static MISSING_CLIENT_ID: () => Error; static MISSING_CLIENT_SECRET: () => Error; static WRONG_LIMIT: (limitGiven: number) => Error; name: string; message: string; cause: any; constructor({ name, message }: ConfError); } type ConfError = ReturnType; export {};