import { createSdk } from "@whop/iframe"; import React, { type PropsWithChildren } from "react"; export type WhopIframeSdkProviderOptions = Parameters[0]; export declare function WhopIframeSdkProvider({ children, options, }: PropsWithChildren<{ options?: WhopIframeSdkProviderOptions; }>): React.JSX.Element;