export declare const schema: {
    type: string;
    function: {
        name: string;
        description: string;
        parameters: {
            type: string;
            required: string[];
            properties: {
                inventory: {
                    type: string;
                    description: string;
                    minItems: number;
                    maxItems: number;
                    uniqueItems: boolean;
                    items: {
                        type: string;
                        properties: {
                            name: {
                                type: string;
                                description: string;
                            };
                            description: {
                                type: string;
                                description: string;
                            };
                            value: {
                                type: string;
                                description: string;
                            };
                            weight: {
                                type: string;
                                description: string;
                            };
                            rarity: {
                                type: string;
                                description: string;
                            };
                            type: {
                                type: string;
                                description: string;
                            };
                            consumable: {
                                type: string;
                                description: string;
                            };
                        };
                    };
                };
            };
        };
    };
};
export declare const execute: (parameters: any) => any;
