import { Config } from '@backstage/config'; /** * The configuration for a single Harness integration. * * @public */ export type HarnessIntegrationConfig = { /** * The host of the target that this matches on, e.g. "app.harness.io" */ host: string; /** * The password or http token to use for authentication. */ token?: string; /** * The API key to use for authentication. */ apiKey?: string; }; /** * Parses a location config block for use in HarnessIntegration * * @public */ export declare function readHarnessConfig(config: Config): HarnessIntegrationConfig;