import type { FlasherOptions, ProjectConfiguration, WorkerOptions, WorkerStep } from './configuration.js'; import type { Project } from './project.js'; export type FlasherStep = WorkerStep; export type FlasherWorkerOptions = WorkerOptions; export declare const parseFlasherArguments: (args: string[]) => string[]; export declare const getFlasherOptions: (configuration: ProjectConfiguration, targetId: string) => FlasherOptions; export declare const getFlasherWorkerOptions: (project: Project, targetId: string) => FlasherWorkerOptions;