import { z } from 'zod';
export const interactionSchema = z
.object({
drilldown: z
.boolean()
.optional()
.describe('Whether to automatically navigate to the first page when navigation groups are expanded'),
})
.describe('Options for how users interact with links in the documentation');