export declare const isNotDefined: (value: T | null | undefined) => value is null | undefined; export declare const isDefined: (value: T | null | undefined) => value is NonNullable; export declare const isEmpty: (value: string | undefined | null) => value is undefined; export declare const isNotEmpty: (value: string | undefined | null) => value is string; export declare const sendRequest: (params: string | { url: string; method: string; body?: Record | FormData | undefined; type?: string | undefined; headers?: Record | undefined; formData?: FormData | undefined; onRequest?: ((request: RequestInit) => Promise) | undefined; }) => Promise<{ data?: ResponseData | undefined; error?: Error | undefined; }>; export declare const setLocalStorageChatflow: (chatflowid: string, chatId: string, saveObj?: Record) => void; export declare const getLocalStorageChatflow: (chatflowid: string) => any; export declare const removeLocalStorageChatHistory: (chatflowid: string) => void; export declare const getBubbleButtonSize: (size: 'small' | 'medium' | 'large' | number | undefined) => number; export declare const setCookie: (cname: string, cvalue: string, exdays: number) => void; export declare const getCookie: (cname: string) => string; //# sourceMappingURL=index.d.ts.map