import { type ExecutorContext } from '@nx/devkit'; import type { D1ExecutorSchema } from './schema'; export declare function resolveDatabase(databases: Record, db?: string): string; export declare function buildD1Args(options: D1ExecutorSchema, database: string): string[]; export default function d1Executor(options: D1ExecutorSchema, context: ExecutorContext): Promise<{ success: boolean; }>;