import * as O from 'fp-ts/Option';
import * as BeehiveArgs from './BeehiveArgs';
declare type BeehiveArgs = BeehiveArgs.BeehiveArgs;
declare type Option = O.Option;
/**
Removes the first two args, which are "node" and the script filename
*/
export declare const getRealArgs: () => string[];
export declare const parseArgs: (args: string[]) => Promise