import { type InstallCommandOptions } from './install.js'; export declare function rcOptionsTypes(): Record; export declare function cliOptionsTypes(): Record; export declare const commandNames: string[]; export declare function help(): string; export interface DedupeCommandOptions extends InstallCommandOptions { readonly check?: boolean; } export declare function handler(opts: DedupeCommandOptions): Promise;