import type * as Phonic from "../index.mjs";
/**
 * OpenAI-compatible function tool schema.
 */
export interface OpenAiTool {
    type: "function";
    function: Phonic.OpenAiFunction;
}
