import { TaquitoError, TezosToolkitConfigError } from '@taquito/core'; /** * @category Error * Error that indicates that a global constant does not exist */ export declare class GlobalConstantNotFound extends TaquitoError { readonly hash: string; constructor(hash: string); } /** * @category Error * Error that indicates the global constant provider not being configured under TezosToolkit */ export declare class UnconfiguredGlobalConstantsProviderError extends TezosToolkitConfigError { constructor(); }