UNPKG

autumn-js

Version:
12 lines (9 loc) 303 B
import { JSX } from 'react'; interface PaywallDialogProps { open: boolean; setOpen: (open: boolean) => void; featureId: string; entityId?: string; } declare function PaywallDialog(params?: PaywallDialogProps): JSX.Element; export { type PaywallDialogProps, PaywallDialog as default };