export interface LicenseChipProps { /** * License type to be displayed. This can be either the type code (e.g. "MED") or the full name (e.g. "Medical"). */ license: string; /** * Size of the chip. Defaults to medium. Available sizes: "small" | "medium". */ size?: 'small' | 'medium'; /** * Whether the chip is disabled. Defaults to false. */ disabled?: boolean; } declare const __VLS_export: import("vue").DefineComponent & Readonly<{}>, { size: "small" | "medium"; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const _default: typeof __VLS_export; export default _default;