UNPKG

@sandlada/vue-mdc

Version:

![Vue MDC Logo](https://raw.githubusercontent.com/sandlada/vue-mdc/refs/heads/main/docs/vue-mdc-cover.png)

18 lines 563 B
/** * @license * Copyright 2025 Sandlada & Kai Orion * SPDX-License-Identifier: MIT */ import type { ExtractPublicPropTypes, PropType, VNode } from 'vue'; import { type TTypographyVariant } from './typography-variant'; export declare const props: { readonly variant: { readonly default: "body-medium"; readonly type: PropType<TTypographyVariant>; }; }; export type TTypograhyProps = ExtractPublicPropTypes<typeof props>; export type TTypograhySlots = { default?: Array<VNode>; }; //# sourceMappingURL=typography.definition.d.ts.map