import { PulumiCommandOptions } from './src/base/base-executor.mjs';

interface ConfigExecutorSchema extends PulumiCommandOptions {
  showSecrets?: boolean;
  action: string;
  secret?: boolean;
  path?: boolean;
  value?: string;
}

export type { ConfigExecutorSchema as C };
