/** * FFI Library Finder * * Locates the ToonDB native library for the current platform. * Search order matches Python SDK for consistency. */ /** * Find the ToonDB native library * * Search order: * 1. TOONDB_LIB_PATH environment variable * 2. Bundled library in package (_bin/{target}/) * 3. Development build (../target/release, ../target/debug) * 4. System paths */ export declare function findLibrary(): string; //# sourceMappingURL=library-finder.d.ts.map