import { InitializeOptions } from "../interfaces"; export declare const initInstrumentations: (apiKey?: string, baseUrl?: string) => void; export declare const manuallyInitInstrumentations: (instrumentModules: InitializeOptions["instrumentModules"], apiKey?: string, baseUrl?: string) => void; /** * Initializes the Traceloop SDK. * Must be called once before any other SDK methods. * * @param options - The options to initialize the SDK. See the {@link InitializeOptions} for details. * @throws {InitializationError} if the configuration is invalid or if failed to fetch feature data. */ export declare const startTracing: (options: InitializeOptions) => void; export declare const shouldSendTraces: () => {} | null; export declare const forceFlush: () => Promise; //# sourceMappingURL=index.d.ts.map