import React from 'react'; import type { SubjectLiftViewProps } from '../types'; /** * SubjectLiftView * * iOS → VisionKit `ImageAnalysisInteraction`: full native subject lift UX * (long-press glow + lift animation + copy/share sheet), identical to Photos.app * * Android → ML Kit `SubjectSegmenter`: segments the subject, then plays a * Reanimated spring lift animation over a blurred background * * Requires iOS 16+ / Android API 24+ * * @example * { * if (nativeEvent.status === 'ready') console.log('Ready to lift!'); * }} * onSubjectLifted={({ nativeEvent }) => { * const { type, data } = nativeEvent; * }} * /> */ export declare function SubjectLiftView(props: SubjectLiftViewProps): React.JSX.Element; //# sourceMappingURL=SubjectLiftView.d.ts.map