import { type Command } from '@oclif/core'; import { BaseCommand } from '../base-command.js'; /** * Base command for all Snowflake sub-commands. * * Hides the --dev and --stage flags that BaseCommand exposes for Formant API * routing — they have no meaning for direct Snowflake connections. */ export declare abstract class SnowflakeBaseCommand extends BaseCommand { static baseFlags: { dev: import("@oclif/core/interfaces").BooleanFlag; stage: import("@oclif/core/interfaces").BooleanFlag; toon: import("@oclif/core/interfaces").BooleanFlag; full: import("@oclif/core/interfaces").BooleanFlag; field: import("@oclif/core/interfaces").OptionFlag; }; }