21 lines
703 B
TypeScript
21 lines
703 B
TypeScript
|
|
import type { CardTokenSections } from '@primeuix/themes/types/card';
|
||
|
|
|
||
|
|
export * from '@primeuix/themes/types/card';
|
||
|
|
|
||
|
|
declare const root: CardTokenSections.Root;
|
||
|
|
declare const body: CardTokenSections.Body;
|
||
|
|
declare const caption: CardTokenSections.Caption;
|
||
|
|
declare const title: CardTokenSections.Title;
|
||
|
|
declare const subtitle: CardTokenSections.Subtitle;
|
||
|
|
declare const css: CardTokenSections.CSS;
|
||
|
|
declare const _default: {
|
||
|
|
root: CardTokenSections.Root;
|
||
|
|
body: CardTokenSections.Body;
|
||
|
|
caption: CardTokenSections.Caption;
|
||
|
|
title: CardTokenSections.Title;
|
||
|
|
subtitle: CardTokenSections.Subtitle;
|
||
|
|
css: string;
|
||
|
|
};
|
||
|
|
|
||
|
|
export { body, caption, css, _default as default, root, subtitle, title };
|