import { publicApiType } from '../createApi';
interface Props {
    context: publicApiType;
    onInit: (context: publicApiType) => void;
    onUpdate: (context: publicApiType) => void;
}
export declare const useOnCb: ({ context, onInit, onUpdate }: Props) => void;
export {};
