/** * * @param commandsOrFile - Commands for Pupper or a file path/URL * @example puppet("path/to/commands.puppet") * @example puppet("https://example.com/commands.puppet") * @example puppet(["go to example.com", "download page as PDF"]) */ export declare const puppet: (commandsOrFile: string | string[]) => Promise<{ commands: string[]; url: string; }>;