import type { IoHelper } from '../io/private'; import type { BootstrappedEnvironment, Notice } from './types'; export interface NoticesFilterFilterOptions { readonly data: Notice[]; readonly cliVersion: string; readonly outDir: string; readonly bootstrappedEnvironments: BootstrappedEnvironment[]; /** * The detected CDK app language. * * @default - no language component is added */ readonly language?: string; } export declare class NoticesFilter { private readonly ioHelper; constructor(ioHelper: IoHelper); filter(options: NoticesFilterFilterOptions): Promise; /** * From a set of input options, return the notices components we are searching for */ private otherComponents; /** * Based on a set of component names, find all notices that match one of the given components */ private findForNamedComponents; /** * Whether the given "affected component" name applies to the given actual component name. * * The name matches if the name is exactly the same, or the name in the notice * is a prefix of the node name when the query ends in '.'. */ private componentNameMatches; /** * Adds dynamic values from the given ActualComponents * * If there are multiple components with the same dynamic name, they are joined * by the separator declared in `specs[name].separator`, defaulting to `','`. */ private addDynamicValues; /** * Treat 'framework' as an alias for either `aws-cdk-lib.` or `@aws-cdk/core.`. * * Because it's EITHER `aws-cdk-lib` or `@aws-cdk/core`, we need to add multiple * arrays at the top level. */ private resolveAliases; /** * Load the construct tree from the given directory and return its components */ private constructTreeComponents; } /** * Notice after passing the filter. A filter can augment a notice with * dynamic values as it has access to the dynamic matching data. */ export declare class FilteredNotice { readonly notice: Notice; private readonly dynamicValues; constructor(notice: Notice); addDynamicValue(key: string, value: string): void; format(): string; private formatOverview; private resolveDynamicValues; } //# sourceMappingURL=filter.d.ts.map