import type { ComponentType } from 'react'; export type OSPlatformId = 'windows' | 'linux' | 'darwin'; export interface OSPlatformOption { id: OSPlatformId; name: string; icon: ComponentType; } export declare const OS_PLATFORMS: OSPlatformOption[]; export declare const DEFAULT_OS_PLATFORM: OSPlatformId; //# sourceMappingURL=os-platforms.d.ts.map