export type Platform = 'apple' | 'pc';
export declare function hostPlatform(): Platform;
export declare function normalizeKeys(keys: string, platform: Platform): string;
