import { ComponentOptionsMixin } from 'vue'; import { ComponentProvideOptions } from 'vue'; import { DefineComponent } from 'vue'; import { ExtractPropTypes } from 'vue'; import { PropType } from 'vue'; import { PublicProps } from 'vue'; declare type __VLS_NonUndefinedable = T extends undefined ? never : T; declare type __VLS_Prettify = { [K in keyof T]: T[K]; } & {}; declare type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: PropType<__VLS_NonUndefinedable>; } : { type: PropType; required: true; }; }; declare type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? __VLS_Prettify : P[K]; }; declare const _default: DefineComponent, { size: string; }>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly, { size: string; }>>> & Readonly<{}>, { size: "small" | "medium"; }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>; export default _default; export declare 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; } export { }