import type { FunctionObject } from './function-object.js';
import type { CacheControl } from './cache-control.js';
/**
 * Representation of the 'ChatCompletionTool' schema.
 */
export type ChatCompletionTool = {
    /**
     * The type of the tool. Currently, only `function` is supported.
     */
    type: 'function';
    function: FunctionObject;
    cache_control?: CacheControl;
};
//# sourceMappingURL=chat-completion-tool.d.ts.map