import { BaseHandler } from './base-handler.js';
import { JSExecuteEndpointOptions } from '../types.js';
export declare class UtilityHandlers extends BaseHandler {
    executeJS(options: JSExecuteEndpointOptions): Promise<{
        content: {
            type: string;
            text: string;
        }[];
    }>;
    extractLinks(options: {
        url: string;
        categorize?: boolean;
    }): Promise<{
        content: {
            type: string;
            text: string;
        }[];
    }>;
}
//# sourceMappingURL=utility-handlers.d.ts.map