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