import { KaplanInput } from "../../shared/validation";
export interface KaplanOptions extends Partial<KaplanInput> {
    json?: boolean;
}
/**
 * Collect input from command line arguments or interactive prompts
 */
export declare const collectInput: (options: KaplanOptions) => Promise<KaplanInput>;
/**
 * Validate input data using Zod schema
 */
export declare const validateInput: (input: any) => KaplanInput;
//# sourceMappingURL=io.d.ts.map