export class ShopifyAuthenticationError extends Error {
    constructor(message: any, data: any);
    data: any;
}
export class ShopifySessionAuthenticationError extends ShopifyAuthenticationError {
}
export class ShopifySessionInvalidError extends ShopifySessionAuthenticationError {
}
export class ShopifySessionMissingError extends ShopifySessionAuthenticationError {
}
export namespace ERROR_CODES {
    let CALLBACK: string;
    let QUERY: string;
    let BILLING: string;
    let OAUTH: string;
    let MISSING_SHOP: string;
    let INVALID_CALLBACK: string;
}
//# sourceMappingURL=errors.d.ts.map