import { BaseCommand } from '../../base-command.js'; type SqlResultLike = { columns?: Array<{ name?: string; }>; error?: string; rowCount?: number; rows?: Record[]; sqlText?: string; }; export default class AnalyticsAutomatedInsights extends BaseCommand { static flags: { file: import("@oclif/core/interfaces").OptionFlag; }; static description: string; static examples: string[]; static summary: string; run(): Promise; } export {};