import type { IVerilogOptions, ProjectConfiguration, WorkerOptions, WorkerStep } from './configuration.js'; import type { Project } from './project.js'; export type IVerilogStep = WorkerStep; export type IVerilogWorkerOptions = WorkerOptions; export declare const parseIVerilogArguments: (args: string[]) => string[]; export declare const getIVerilogOptions: (configuration: ProjectConfiguration, targetId: string) => IVerilogOptions; export declare const getIVerilogWorkerOptions: (project: Project, targetId: string) => IVerilogWorkerOptions;