UNPKG

1.08 kBTypeScriptView Raw
1import { sizePropValidator } from '../../mixins';
2import { Classes } from '../../types';
3declare const _default: import("vue").DefineComponent<{
4 /**
5 * The color variant of the card
6 * @type primary | success | light | dark | info | success | warning | danger
7 * @default light
8 * @name color
9 */
10 color: {
11 type: StringConstructor;
12 default: () => string;
13 };
14 /**
15 * The size variant of the card
16 * @type sm | md | lg
17 * @default md
18 * @name size
19 */
20 size: {
21 type: StringConstructor;
22 default: () => string;
23 validator: typeof sizePropValidator;
24 };
25}, unknown, unknown, {
26 classes(): Classes;
27}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
28 color?: unknown;
29 size?: unknown;
30} & {
31 color: string;
32 size: string;
33} & {}>, {
34 color: string;
35 size: string;
36}>;
37export default _default;