import { SvelteComponent } from "svelte"; declare const __propDef: { props: { [x: string]: any; type?: ("default" | "secondary") | undefined; class?: string | undefined; exclusionHeight?: number | undefined; trueCenter?: boolean | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export type HeroProps = typeof __propDef.props; export type HeroEvents = typeof __propDef.events; export type HeroSlots = typeof __propDef.slots; /** * A layout component to help you create your hero pages. * * [See Docs](https://geist-ui-svelte.dev/components/hero) | [Open Issue](https://github.com/ieedan/geist-ui-svelte/issues/new) */ export default class Hero extends SvelteComponent { } export {};