import { ApiProviderProps } from "./ApiProvider"; /** * Call `onLoad` whenever `data` changes and is present. */ export declare function useOnLoad({ onLoad, data, }: { onLoad: ApiProviderProps["onLoad"]; data: any; }): void;