import { Questions } from './types'; export declare const prompt: (data: Questions>) => Promise; export declare const getSecret: (key: string) => Promise; export declare const setSecret: (key: string, value: string) => Promise; export declare const print: (data: any) => Promise; export declare const start: (data: any) => Promise; export declare const stop: (data: any) => Promise; export declare const startProgress: (data: any) => Promise; export declare const advanceProgress: (data: any) => Promise; export declare const stopProgress: (data: any) => Promise; export declare const track: (data: any) => Promise;