import { PlanPaywallServiceConfig } from '../../services/index.js'; interface RootProps { children: React.ReactNode; planPaywallServiceConfig: PlanPaywallServiceConfig; } export declare function Root({ children, planPaywallServiceConfig }: RootProps): import("react/jsx-runtime").JSX.Element; export interface PaywallData { isLoading: boolean; error: string | null; hasAccess: boolean; } interface PaywallProps { children: (props: PaywallData) => React.ReactNode; } export declare function Paywall({ children }: PaywallProps): import("react").ReactNode; export {};