export declare enum MiniprogramType {
    TEST = 0,
    PREVIEW = 1,
    RELEASE = 2
}
export interface LaunchWxMiniOptions {
    appId: string;
    userName: string;
    path: string;
    miniprogramType: MiniprogramType;
}
export declare const launchWxMiniProgram: (options: LaunchWxMiniOptions) => void;
