UNPKG

svelte-tuicss

Version:

Svelte component library for the Tuicss UI framework.

24 lines (23 loc) 689 B
import { SvelteComponent } from "svelte"; declare const __propDef: { props: { [x: string]: any; header?: string | undefined; fullWidth?: boolean | undefined; noShadow?: boolean | undefined; compact?: boolean | undefined; center?: boolean | undefined; }; events: { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export type TuiPanelProps = typeof __propDef.props; export type TuiPanelEvents = typeof __propDef.events; export type TuiPanelSlots = typeof __propDef.slots; export default class TuiPanel extends SvelteComponent<TuiPanelProps, TuiPanelEvents, TuiPanelSlots> { } export {};