import { CommandArg } from '../Contracts'; export declare const args: { /** * Define argument that accepts string value */ string(options?: Partial> | undefined): (target: TTarget, propertyName: TKey) => void; /** * Define argument that accepts multiple values. Must be * the last argument. */ spread(options?: Partial> | undefined): (target: TTarget_1, propertyName: TKey_1) => void; };