interface DocsTool { type: 'DocumentationTool'; name: string; instructions: string; docsPath: string; } interface ExamplesTool { type: 'ExamplesTool'; examplesPath: string; } interface ChangelogsTool { type: 'ChangeLogTool'; changelogsPath: string; } interface WorkOSTools { docs: DocsTool; examples: ExamplesTool; changelogs: ChangelogsTool; } declare function getTools(): Promise; export { getTools };