/** * Hook for accessing Blue Billywig Channel SDK native functionality * * @example * ```tsx * import { useChannelSDK } from '@bluebillywig/react-native-channel'; * * function App() { * const { getVersion, prefetchChannel, clearCache } = useChannelSDK(); * * useEffect(() => { * getVersion().then(version => console.log('SDK version:', version)); * }, []); * * return ; * } * ``` */ export declare function useChannelSDK(): { getVersion: () => Promise; isInitialized: () => Promise; prefetchChannel: (channelUrl: string) => Promise; clearCache: () => Promise; getPlatformInfo: () => { platform: "ios" | "android" | "windows" | "macos" | "web"; version: string | number; isTV: boolean; }; }; //# sourceMappingURL=useChannelSDK.d.ts.map