declare const parseArgs: (args: string[]) => (string | {
    flag: string;
    value?: string | undefined;
})[];
export default parseArgs;
