import type { LintContext } from '../linter/linter.types';
import type { Rule, RuleCategory, RuleSeverity, RuleType, RuleMeta, RuleMessage } from './rules.types';
export default class NoDuplicateContainerNamesRule implements Rule {
    static readonly name = "no-duplicate-container-names";
    get name(): string;
    type: RuleType;
    category: RuleCategory;
    severity: RuleSeverity;
    meta: RuleMeta;
    fixable: boolean;
    getMessage({ serviceName, containerName, anotherService, }: {
        serviceName: string;
        containerName: string;
        anotherService: string;
    }): string;
    check(context: LintContext): RuleMessage[];
}
