import { type ReactNode } from 'react'; import { type StyleProp, type ViewStyle } from 'react-native'; import { type PreviewContent } from './types'; export type TriggerProps = { preview?: PreviewContent; /** Fires when the user taps the expanded preview to "commit" into it. * Not called for a `link` preview when `useInAppBrowser` is true — the * native morph into the in-app browser handles that case. */ onPreviewPress?: () => void; /** Border radius of the thumbnail being wrapped. Used natively to clip the * targeted-preview lift animation. */ borderRadius?: number; style?: StyleProp; children: ReactNode; }; export declare const Trigger: import("./registry").TaggedComponent; //# sourceMappingURL=Trigger.d.ts.map