import type { CallToolResult } from '@modelcontextprotocol/sdk/types.js'; /** * Builds a response for a tool call. * * When `content` is anything other than a string, it will be stringified. * * @param props - properties for building the response * @param props.content - the content of the response * @param props.isError - whether the response indicates an error */ declare const buildResponse: (props: { content: unknown; isError?: boolean; }) => CallToolResult; export { buildResponse }; //# sourceMappingURL=buildResponse.d.ts.map