/** * @enum * * The API key's type. */ export declare enum ApiKeyType { /** * Publishable key that is tied to eg. a sales channel */ PUBLISHABLE = "publishable", /** * Secret key that allows access to the admin API */ SECRET = "secret" } export declare const PUBLISHABLE_KEY_HEADER = "x-publishable-api-key"; //# sourceMappingURL=api-key-type.d.ts.map