import type { CardShadow, CardClose } from './src/interface'; import type { DefineComponent, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue'; import type { Install, BasicType } from '../_utils'; import Card from "./src/card"; export declare const VCard: Install, string | null>; readonly round: BasicType; readonly padding: BasicType, string | number | null>; readonly shadow: BasicType, CardShadow | null>; readonly borderColor: BasicType, string | null>; readonly background: BasicType, string | null>; readonly titleColor: BasicType, string | null>; readonly titleBold: BasicType; readonly close: BasicType; readonly onClose: BasicType, null>; }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly, string | null>; readonly round: BasicType; readonly padding: BasicType, string | number | null>; readonly shadow: BasicType, CardShadow | null>; readonly borderColor: BasicType, string | null>; readonly background: BasicType, string | null>; readonly titleColor: BasicType, string | null>; readonly titleBold: BasicType; readonly close: BasicType; readonly onClose: BasicType, null>; }>>, { readonly close: boolean; readonly title: string; readonly round: boolean; readonly background: string; readonly titleColor: string; readonly onClose: CardClose; readonly padding: string | number; readonly shadow: CardShadow; readonly borderColor: string; readonly titleBold: boolean; }>>; /** card 组件实例类型 */ export type CardInstance = InstanceType; export * from './src/interface'; export default VCard;