import { z } from "zod";
import type { Option, PositionalArgument } from "../src/type";
export declare function createOption({ type, alias, description, }: {
    type?: z.ZodTypeAny;
    alias?: string;
    description?: string;
}): Option;
export declare function createPositionalArg({ type, name, description, }: {
    type?: z.ZodTypeAny;
    name?: string;
    description?: string;
}): PositionalArgument;
