export interface IOSAppTrackingPlugin { getTrackingStatus(): Promise; requestPermission(): Promise; } export interface IOSAppTrackingResponse { code: string; status: IOSAppTrackingStatus; } export declare type IOSAppTrackingStatus = 'authorized' | 'denied' | 'unrequested' | 'restricted';