/** * @license * Copyright (c) Peculiar Ventures, LLC. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import { FunctionalComponent } from '../../stencil-public-runtime'; import { type JSXBase } from '../../stencil-public-runtime'; import type { TTypography, TColor } from '../../interface'; interface ITypographyProps { component?: keyof JSXBase.IntrinsicElements; variant?: TTypography; color?: TColor; class?: string; } export declare const Typography: FunctionalComponent; export {};