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