import { NativeModule } from "expo-modules-core"; import type { ChangeEventPayload, ErrorEventPayload, StateEventPayload } from "./ExpoShareIntentModule.types"; type ExpoShareIntentModuleEvents = { onError: (event: ErrorEventPayload) => void; onChange: (event: ChangeEventPayload) => void; onStateChange: (event: StateEventPayload) => void; }; declare class ExpoShareIntentModuleType extends NativeModule { getShareIntent(url: string): string; clearShareIntent(key: string): Promise; hasShareIntent(key: string): boolean; } declare const ExpoShareIntentModule: ExpoShareIntentModuleType | null; export default ExpoShareIntentModule; //# sourceMappingURL=ExpoShareIntentModule.d.ts.map