import { ExtractPropTypes, PropType } from 'vue'; import { SizeT, RoundT, VariantT, Color2T } from '../../_utils/types'; export declare const inBoxProps: { /** * 大小 SizeT */ size: { type: PropType; }; /** * 圆角值 RoundT */ round: { type: PropType; }; /** * 颜色类型 Color2T */ color: { type: PropType; default: string; }; /** * 按钮类型 VariantT */ variant: { type: PropType; default: string; }; /** * 是否聚焦 */ focused: { type: BooleanConstructor; }; /** * 是否禁用 */ disabled: { type: BooleanConstructor; }; /** * 是否只读 */ readonly: { type: BooleanConstructor; }; }; export type InBoxProps = ExtractPropTypes;