import { SqbWidget } from './sqb-widget'; declare global { interface Window { squatchJsApi: API; } } declare type API = { close: () => void; }; export declare function useWidget(props: SqbWidget): { states: { loading: boolean; }; data: { html: string; }; }; export {};