import type { TSchema } from '../schema/index.mjs'; import { Kind } from '../symbols/index.mjs'; export interface TArgument extends TSchema { [Kind]: 'Argument'; static: unknown; index: Index; } /** `[JavaScript]` Creates an Argument Type. */ export declare function Argument(index: Index): TArgument;