/** * 处理 `@Input` boolean 类型属性 */ export declare function InputBoolean(): (target: T, propertyKey: K) => void; /** * 处理 `@Input` number 类型属性 */ export declare function InputNumber(fallbackValue?: number): (target: T, propertyKey: K) => void;