export declare function withTelemetry<F>(options: {
    enabled: boolean;
    integration: string;
}, callback: () => F | Promise<F>): Promise<F>;
