export declare const commonCommandDefs: ({
    name: string;
    type: StringConstructor;
    description: string;
} | {
    name: string;
    type: BooleanConstructor;
    description: string;
} | {
    name: string;
    type: StringConstructor;
    description?: undefined;
} | {
    name: string;
    type: NumberConstructor;
    description: string;
})[];
