import { ConfigPlugin } from '@expo/config-plugins';
export type ScreenSharePluginProps = {
    appleTeamId: string;
    extensionName?: string;
};
declare const withIosScreenShare: ConfigPlugin<ScreenSharePluginProps>;
export default withIosScreenShare;
