import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; image: string; noImage?: boolean | undefined; avatar: string; name: string; description: string; extra?: string[] | undefined; extraSeparator?: string | undefined; }; events: { clickAvatar: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: { actions: {}; }; }; export declare type PageHeadingProps = typeof __propDef.props; export declare type PageHeadingEvents = typeof __propDef.events; export declare type PageHeadingSlots = typeof __propDef.slots; export default class PageHeading extends SvelteComponentTyped { } export {};