import React from "react"; import type { SharePlatform as ShareDrawerPlatform } from "../../../components/molecules/ShareDrawer/ShareDrawer.types"; export type InviteShareDrawerProps = { open: boolean; safeShareUrl?: string; platforms: ShareDrawerPlatform[]; onClose: () => void; onPlatformClick: (platformId: string) => void; }; declare const InviteShareDrawer: React.FC; export default InviteShareDrawer;