import { SnowflakeBaseCommand } from '../../lib/snowflake-base-command.js'; interface InferSchemaRow { COLUMN_NAME: string; NULLABLE: boolean; ORDER_ID: number; TYPE: string; } export default class SnowflakeCreateTable extends SnowflakeBaseCommand { static description: string; static summary: string; static examples: string[]; static args: { file: import("@oclif/core/interfaces").Arg>; }; static flags: { 'dry-run': import("@oclif/core/interfaces").BooleanFlag; 'field-delimiter': import("@oclif/core/interfaces").OptionFlag; file: import("@oclif/core/interfaces").OptionFlag; 'max-records': import("@oclif/core/interfaces").OptionFlag; 'if-not-exists': import("@oclif/core/interfaces").BooleanFlag; sheet: import("@oclif/core/interfaces").OptionFlag; stage: import("@oclif/core/interfaces").OptionFlag; table: import("@oclif/core/interfaces").OptionFlag; verbose: import("@oclif/core/interfaces").BooleanFlag; }; run(): Promise<{ columns: InferSchemaRow[]; ddl: string; table: string; }>; } export {};