import { ConfigPlugin } from '@expo/config-plugins'; type LKConfigOptions = { "android"?: { "audioType"?: "media" | "communication"; "enableScreenShareService"?: boolean; }; "ios"?: { "enableMultitaskingCameraAccess"?: boolean; }; }; declare const withLiveKit: ConfigPlugin; export default withLiveKit;