import type { Widget } from 'instantsearch.js';
import type { IndexWidget } from 'instantsearch.js/es/widgets/index/index';
export declare function useWidget<TWidget extends Widget | IndexWidget, TProps>({ widget, parentIndex, props, shouldSsr, }: {
    widget: TWidget;
    parentIndex: IndexWidget;
    props: TProps;
    shouldSsr: boolean;
}): void;
