interface ParsedArgs {
    baseUrl: string;
    username: string | null;
    password: string | null;
    oAuthToken: string | null;
    apiToken: string | null;
    proxy: string | null;
    basicAuthPassword: string | null;
    basicAuthUsername: string | null;
    appId: string | null;
    preview: boolean;
    guestSpaceId: string | null;
    demo: boolean;
    typeName: string;
    namespace: string;
    output: string;
}
export declare const parse: (argv: string[]) => ParsedArgs;
export {};
