export interface SOfficeOptions { path?: string; } export interface SOfficeProfileDir { path: string; fileURL: string; } export declare class SOffice { #private; preferredPath?: string; private _path; private _profileDir; private static _spawnQueue; constructor(opts?: SOfficeOptions); get path(): Promise; get profileDir(): Promise; spawn(args: string[]): Promise; private setProfileDir; }