import { SnowflakeBaseCommand } from '../../lib/snowflake-base-command.js'; interface CopyHistoryRow { ERROR_COUNT: number; FILE_NAME: string; FIRST_ERROR_MESSAGE: string | null; LAST_LOAD_TIME: string; ROW_COUNT: number; STATUS: string; TABLE_CATALOG_NAME: string; TABLE_NAME: string; TABLE_SCHEMA_NAME: string; } export default class SnowflakeList extends SnowflakeBaseCommand { static description: string; static summary: string; static examples: string[]; static flags: { limit: import("@oclif/core/interfaces").OptionFlag; since: import("@oclif/core/interfaces").OptionFlag; table: import("@oclif/core/interfaces").OptionFlag; verbose: import("@oclif/core/interfaces").BooleanFlag; }; run(): Promise; } export {};