import { GraphQLError } from 'graphql'; export declare class CedarGraphQLError extends GraphQLError { constructor(message: string, extensions?: Record, originalError?: Error & { readonly extensions?: unknown; }); } /** @deprecated Use `CedarGraphQLError` instead */ export declare const RedwoodGraphQLError: typeof CedarGraphQLError; /** @deprecated Use `CedarGraphQLError` instead */ export type RedwoodGraphQLError = CedarGraphQLError; export declare class SyntaxError extends CedarGraphQLError { constructor(message: string); } export declare class ValidationError extends CedarGraphQLError { constructor(message: string); } export declare class AuthenticationError extends CedarGraphQLError { constructor(message: string); } export declare class ForbiddenError extends CedarGraphQLError { constructor(message: string); } export declare class PersistedQueryNotFoundError extends CedarGraphQLError { constructor(); } export declare class PersistedQueryNotSupportedError extends CedarGraphQLError { constructor(); } export declare class UserInputError extends CedarGraphQLError { constructor(message: string, properties?: Record); } //# sourceMappingURL=errors.d.ts.map