UNPKG

fluent-svelte-extra

Version:

A faithful implementation of Microsoft's Fluent Design System in Svelte.

22 lines (21 loc) 704 B
import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; class?: string; acrylic?: boolean; element?: HTMLDivElement; }; events: { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export declare type TeachingTipSurfaceProps = typeof __propDef.props; export declare type TeachingTipSurfaceEvents = typeof __propDef.events; export declare type TeachingTipSurfaceSlots = typeof __propDef.slots; export default class TeachingTipSurface extends SvelteComponentTyped<TeachingTipSurfaceProps, TeachingTipSurfaceEvents, TeachingTipSurfaceSlots> { } export {};