import { QuickCommand } from './types'; export type ScriptStepType = 'command' | 'comment'; export interface ScriptStep { type: ScriptStepType; sourceLine: number; text: string; delay: number; pauseAfter: boolean; } export declare function parseScriptSteps(command: QuickCommand): ScriptStep[]; export declare function getExecutableLineCount(command: QuickCommand): number;