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 { } export default Header;