import type { ReactNode } from 'react'; import React from 'react'; import type { InkeepSearchSettings } from './InkeepWidgetProps'; export type InkeepSearchContextValue = InkeepSearchSettings; declare const useInkeepSearchContext: () => InkeepSearchSettings; export interface InkeepSearchProviderProps extends InkeepSearchSettings { children?: ReactNode; } declare const InkeepSearchProvider: React.FC; export { InkeepSearchProvider, useInkeepSearchContext };