import { AccountArgs, CommonArgs, EnvironmentArgs, YargsCommandModule } from '../../types/Yargs.js'; type LighthouseScoreArgs = CommonArgs & AccountArgs & EnvironmentArgs & { theme?: string; target: string; verbose: boolean; }; declare const cmslighthouseScoreCommand: YargsCommandModule; export default cmslighthouseScoreCommand;