@glance-networks/agent-plugin
Version:
Glance Networks Agent Plugin
26 lines (25 loc) • 839 B
TypeScript
import { SvelteComponent } from "svelte";
import { type Tag, TYPOGRAPHY_ALIGNMENTS, TYPOGRAPHY_VARIANTS } from './constants';
declare const __propDef: {
props: {
[x: string]: any;
tag?: Tag | undefined;
variant?: (TYPOGRAPHY_VARIANTS | string) | undefined;
align?: (TYPOGRAPHY_ALIGNMENTS | string) | undefined;
bodyWeight?: string | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
exports?: undefined;
bindings?: undefined;
};
export type TypographyProps = typeof __propDef.props;
export type TypographyEvents = typeof __propDef.events;
export type TypographySlots = typeof __propDef.slots;
export default class Typography extends SvelteComponent<TypographyProps, TypographyEvents, TypographySlots> {
}
export {};