import type * as Phonic from "../index.mjs";
export interface OpenAiFunction {
    /** Function name the assistant will use in `tool_call.tool_name`. */
    name: string;
    /** Description of what the tool does and when to call it. */
    description: string;
    parameters: Phonic.OpenAiFunctionParameters;
    /** Inline tools require strict function calling. */
    strict: true;
}
