/** * This includes all the functions you can use to communicate with our organization endpoint * * @module Organization Methods */ import { TrieveSDK } from "../../sdk"; import { CreateApiKeyReqPayload, CreateApiKeyResponse, ExtendedOrganizationUsageCount, OrganizationWithSubAndPlan } from "../../types.gen"; export declare function createOrganizationApiKey( /** @hidden */ this: TrieveSDK, props: CreateApiKeyReqPayload, signal?: AbortSignal): Promise; export declare function deleteOrganizationApiKey( /** @hidden */ this: TrieveSDK, apiKeyId: string, signal?: AbortSignal): Promise; export declare function getOrganizationById( /** @hidden */ this: TrieveSDK, organizationId: string, signal?: AbortSignal): Promise; export declare const formatDateForApi: (date: Date) => string; export declare function getOrganizationUsage( /** @hidden */ this: TrieveSDK, organizationId: string, signal?: AbortSignal): Promise; //# sourceMappingURL=index.d.ts.map