import type { Command } from 'commander'; export type ExamplesCommandContext = { log: (line: string) => void; }; export declare function createExamplesCommand(program: Command, ctx: ExamplesCommandContext): void;