UNPKG

svantic

Version:

A set of Fomantic-UI components for Svelte framework

15 lines (13 loc) 353 B
import { SvelteComponentTyped} from 'svelte/internal'; import { Style } from '../../style'; import type { MountEvent } from '../../common' interface HeaderProps { class?: string; style?: Style; } /** * @description SVantic PopupHeader */ declare class Header extends SvelteComponentTyped<HeaderProps> { } export default Header;