/** * Lightweight SDK initialization for tree-shakeable usage. * DO NOT EDIT - Regenerate with: bun run generate * @generated * * @example * ```typescript * import { initSDK, invoices, customers } from '@spaceinvoices/js-sdk'; * * // Initialize once at app startup * initSDK({ accessToken: 'your-api-key' }); * * // Then use individual modules anywhere * const result = await invoices.list(); * ``` */ import type { SDKConfig } from "./types"; /** * Initialize the SDK configuration for tree-shakeable module usage. * Call this once at app startup before using any API modules. */ export declare function initSDK(config: SDKConfig | string): void; //# sourceMappingURL=init.d.ts.map