/** * Parses command line arguments and returns the action to take */ export declare const parseCommandLineArgs: (args?: string[]) => { action: "version"; } | { action: "help"; } | { action: "continue"; }; /** * Handles command line arguments and exits if necessary */ export declare const handleCommandLineArgs: () => void;