/**
 * Represents an object containing an API key for authorization.
 */
type ApiKeyAuthorized = {
    /**
     * @property {string} apiKey - The API key for authorization.
     */
    apiKey: string;
    devMode: boolean;
};
export { ApiKeyAuthorized };
//# sourceMappingURL=apikeyauthorized.d.ts.map