import { FlagsConfig, SfdxCommand } from '@salesforce/command';
export declare type Results = {
    [key: string]: {
        correspondingFile: string;
        matches: boolean;
        reason?: string;
    };
};
export default class Compare extends SfdxCommand {
    static readonly description: string;
    static readonly examples: string[];
    static readonly flagsConfig: FlagsConfig;
    run(): Promise<Results>;
    private normalizeFilename;
}
