import { ServiceContainer } from '../index.js';
export declare const createPlaywrightSessionTool: {
    definition: {
        name: string;
        description: string;
        inputSchema: {
            type: string;
            properties: {
                browser: {
                    type: string;
                    enum: string[];
                    description: string;
                };
                headless: {
                    type: string;
                    description: string;
                };
                viewport: {
                    type: string;
                    properties: {
                        width: {
                            type: string;
                            minimum: number;
                            maximum: number;
                        };
                        height: {
                            type: string;
                            minimum: number;
                            maximum: number;
                        };
                    };
                    description: string;
                };
                memory: {
                    type: string;
                    enum: string[];
                    description: string;
                };
            };
            required: never[];
        };
    };
    execute(input: unknown, services: ServiceContainer): Promise<{
        content: {
            type: string;
            text: string;
        }[];
    }>;
};
//# sourceMappingURL=CreatePlaywrightSessionTool.d.ts.map