import type { ComponentChildren } from 'preact'; import type { TopLevelDataSchema } from './types'; interface StateProviderProps { defaultData?: TLDS | object; children: ComponentChildren; } export declare function StateProvider({ defaultData, children, }: StateProviderProps): import("preact/jsx-runtime").JSX.Element; export {};