export * as sso from "./sso"; export * from "./utils"; export namespace corvaAPI { function get(path: any, queryParams?: {}, requestOptions?: {}): Promise; function getWithHeaders(path: any, queryParams?: {}, requestOptions?: {}): Promise<{ data: any; headers: any; }>; function put(path: any, content: any, queryParams?: {}, requestOptions?: {}): Promise; function patch(path: any, content: any, queryParams?: {}, requestOptions?: {}): Promise; function post(path: any, entity: any, requestOptions?: {}): Promise; function del(path: any, queryParams?: {}, requestOptions?: {}): Promise; } export namespace corvaDataAPI { export function get_1(path: any, queryParams?: {}, requestOptions?: {}): Promise; export { get_1 as get }; export function put_1(path: any, content: any, queryParams?: {}, requestOptions?: {}): Promise; export { put_1 as put }; export function patch_1(path: any, content: any, queryParams?: {}, requestOptions?: {}): Promise; export { patch_1 as patch }; export function post_1(path: any, entity: any, requestOptions?: {}): Promise; export { post_1 as post }; export function del_1(path: any, queryParams?: {}, requestOptions?: {}): Promise; export { del_1 as del }; } export const socketClient: { subscribe: >(subscription: O, { onDataReceive }: { onDataReceive: (data: O & { data: T; }) => any; }) => () => void; onConnectionChange: (handler: import("./subscriptions/types").OnConnectionChange) => () => void; disconnect: () => void; }; import * as clientStorage from './clientStorage'; import * as jsonApi from './jsonApi'; import * as subscriptions from './subscriptions'; import * as corvaUrls from './corvaUrls'; export { clientStorage, jsonApi, subscriptions, corvaUrls }; //# sourceMappingURL=index.d.ts.map