import * as React from 'react'; import type { MobileContextProps } from "./MobileContext.js"; export type WithPlatformProps = { platform: MobileContextProps['platform']; }; export declare function withPlatform(WrappedComponent: React.ComponentType): React.ComponentType>;