import { type ExecutorContext } from '@nx/devkit'; import type { SecretExecutorSchema } from './schema'; export declare function buildSecretArgs(options: SecretExecutorSchema): string[]; export default function secretExecutor(options: SecretExecutorSchema, context: ExecutorContext): Promise<{ success: boolean; }>;