import { ReactNode } from 'react'; import { Registry } from '@lattice-php/core/registry'; import { SpriteValue } from '@lattice-php/ui/icons/sprite'; export type ProviderBaseProps = { children: ReactNode; /** The url of the page being rendered, so the first render already knows it (SSR included). */ initialUrl?: string; registry: Registry; sprite?: SpriteValue; toaster?: boolean; }; export declare function ProviderBase({ children, initialUrl, registry, sprite, toaster, }: ProviderBaseProps): import("react").JSX.Element;