import { CompletionOptions } from "./shared.mjs"; import { CLISchema } from "../../cli/index.mjs"; //#region src/core/completion/shells/powershell.d.ts /** * Generate a PowerShell completion script for the CLI. * * @param schema - The CLI schema. * @param options - Optional generator configuration. * @returns A complete PowerShell completion script. */ declare function generatePowerShellCompletion(schema: CLISchema, options?: CompletionOptions): string; //#endregion export { generatePowerShellCompletion };