import { Registry } from '@lattice-php/core/registry'; import { ProviderBaseProps } from './provider-base.js'; type ProviderProps = Omit & { registry?: Registry; }; export declare function Provider({ registry, ...props }: ProviderProps): import("react").JSX.Element; export { useComponentRegistry } from '@lattice-php/core/registry-context'; export { useEffectHandlerRegistry } from '@lattice-php/ui/effects/registry'; export { useColumnRegistry } from '@lattice-php/table/registry';