export declare const schema: {
    type: string;
    function: {
        name: string;
        description: string;
        parameters: {
            type: string;
            required: string[];
            properties: {
                long_description: {
                    type: string;
                    description: string;
                };
                short_description: {
                    type: string;
                    description: string;
                };
            };
        };
    };
};
export declare const execute: (parameters: any) => any;
