import { SfCommand } from '@salesforce/sf-plugins-core';
export type VerifyResponse = {
    message: string;
    verified: boolean;
};
export declare class Verify extends SfCommand<VerifyResponse> {
    static readonly summary: string;
    static readonly description: string;
    static readonly examples: string[];
    static readonly hidden: true;
    static readonly flags: {
        npm: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
        registry: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
        loglevel: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
    };
    private static getVerifier;
    run(): Promise<VerifyResponse>;
}
