import type { NextpnrOptions, ProjectConfiguration, WorkerOptions, WorkerStep } from './configuration.js'; import type { Project } from './project.js'; export type NextpnrStep = WorkerStep; export type NextpnrWorkerOptions = WorkerOptions; export declare const parseNextpnrArguments: (args: string[]) => string[]; export declare const getNextpnrOptions: (configuration: ProjectConfiguration, targetId: string) => NextpnrOptions; export declare const getNextpnrWorkerOptions: (project: Project, targetId: string) => NextpnrWorkerOptions;