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: { url: string; method: string; body?: Record | FormData; type?: string; } | string) => Promise<{ data?: ResponseData | undefined; error?: Error | undefined; }>; //# sourceMappingURL=index.d.ts.map