import type { attributes } from './attributes'; import type { CommonDisplayName } from './CommonDisplayName'; import type { CommonName } from './CommonName'; export declare type ImporterConfiguration = { importerType?: CommonName; name: CommonName; displayName: CommonDisplayName; /** * an array of ids that an importer will apply to the issues against theexternal system */ filter?: Array; attributeMap?: Array<{ name?: CommonName; attributes?: attributes; }>; };