import { MaybeRef, ComputedRef } from 'vue'; import { PlatformConfiguration, SupportedPlatformName, CarrierIdentifier } from '../types'; export interface UsePlatform { config: ComputedRef; hasCarrier(carrierIdentifier: CarrierIdentifier): boolean; } export declare const usePlatform: (platformName: MaybeRef) => UsePlatform;