export type Os = 'mac-os' | 'linux' | 'windows' | 'unknown';
/**
 * Returns the current operating system platform.
 */
export declare function getPlatform(): Os;
