declare const IconType: ["left", "right", "search", "user", "check-circle-fill", "close-circle-fill", "info-circle-fill", "warning-circle-fill"]; declare const ButtonSize: ["small", "large"]; declare type ButtonSize = typeof ButtonSize[number]; declare const ButtonType: ["primary", "dashed", "danger"]; declare type ButtonType = typeof ButtonType[number]; declare const ButtonShape: ["round", "circle"]; declare type ButtonShape = typeof ButtonShape[number]; declare const ButtonHtmlType: ["submit", "reset", "button"]; declare type ButtonHtmlType = typeof ButtonHtmlType[number]; export { IconType, ButtonSize, ButtonType, ButtonShape, ButtonHtmlType };