import { SvelteComponent } from "svelte"; declare const __propDef: { props: { title: string; description?: string | undefined; image?: string; author?: string; date?: string | undefined; type?: 'website' | 'article'; locales?: Array; robots?: boolean; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type SeoProps = typeof __propDef.props; export type SeoEvents = typeof __propDef.events; export type SeoSlots = typeof __propDef.slots; export default class Seo extends SvelteComponent { } export {};