declare class ProcessHelper {
    cachedPlatform: string;
    constructor();
    resetPlatform(): void;
    setPlatform(platform?: string): void;
}
export default ProcessHelper;
