import { SnowflakeBaseCommand } from '../../lib/snowflake-base-command.js'; interface QueryHistoryRow { END_TIME: string | null; ERROR_CODE: string | null; ERROR_MESSAGE: string | null; QUERY_ID: string; QUERY_TEXT: string; ROWS_PRODUCED: number | null; START_TIME: string; STATUS: string; TOTAL_ELAPSED_TIME: number | null; } export default class SnowflakeStatus extends SnowflakeBaseCommand { static description: string; static summary: string; static examples: string[]; static args: { queryId: import("@oclif/core/interfaces").Arg>; }; static flags: { verbose: import("@oclif/core/interfaces").BooleanFlag; }; run(): Promise; } export {};