export declare class DecoratorArgument { constraint: DecoratorArgumentConstraint; value: unknown; constructor(constraint: DecoratorArgumentConstraint, value: unknown); } export interface DecoratorArgumentConstraint { optional: boolean; staticallyKnown: boolean; } export interface ClawjectDecoratorArgumentError { error: string; index: number; }