import { FunctionalComponent } from "vue"; //#region src/client/components/VPCard.d.ts interface CardProps { /** * Card title * * 卡片标题 * */ title: string; /** * Card description * * 卡片描述 */ desc?: string; /** * Card icon * * 卡片图标 */ logo?: string; /** * Card link * * 卡片链接 */ link?: string; /** * Card background * * 卡片背景 */ background?: string; /** * Card font color * * 卡片字体颜色 */ color?: string; } declare const VPCard: FunctionalComponent; //#endregion export { CardProps, VPCard as default }; //# sourceMappingURL=VPCard.d.ts.map