import type { SpreadArgument, StringArgument } from '../types.js'; /** * Namespace for defining arguments using decorators. */ export declare const args: { /** * Define argument that accepts a string value */ string(options?: Partial, "type">>): (target: Target, propertyName: Key) => void; /** * Define argument that accepts a spread value */ spread(options?: Partial, "type">>): (target: Target, propertyName: Key) => void; };