import type { CliOptions, SkillRenderTarget } from "./types.js"; export type OptionValue = string | boolean | string[] | undefined; export declare function parseCsv(value: OptionValue): string[]; export declare function stringOption(value: OptionValue): string | undefined; export declare function targetRootOption(options: CliOptions): string; export declare function numberOption(value: OptionValue, fallback: number): number; export declare function removeUndefined(value: Record): T; export declare function parsePromotionTarget(value: string): "skill" | "rule" | "doc"; export declare function parseSkillRenderTarget(value: string): SkillRenderTarget; export declare function booleanOption(options: CliOptions, key: string): boolean;