import type { ViewProps } from "@tarojs/components/types/View"; import type { ReactNode } from "react"; interface ShareSheetOptionsProps extends ViewProps { children?: ReactNode; } export default function ShareSheetOptions(props: ShareSheetOptionsProps): JSX.Element; export {};