export declare const TOOL_DEFINITIONS: ({
    name: string;
    description: string;
    inputSchema: {
        type: string;
        properties: {
            url: {
                type: string;
                description: string;
            };
            device: {
                type: string;
                enum: string[];
                default: string;
                description: string;
            };
            profile: {
                type: string;
                default: boolean;
                description: string;
            };
            headless: {
                type: string;
                default: boolean;
                description: string;
            };
            cpuProfilePath?: undefined;
            traceEventsPath?: undefined;
        };
        required: string[];
    };
} | {
    name: string;
    description: string;
    inputSchema: {
        type: string;
        properties: {
            cpuProfilePath: {
                type: string;
                description: string;
            };
            traceEventsPath: {
                type: string;
                description: string;
            };
            url?: undefined;
            device?: undefined;
            profile?: undefined;
            headless?: undefined;
        };
        required: string[];
    };
})[];
