import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { title?: string; subTitle?: string; button?: string; href?: string; image: string; style?: string; }; events: { click: MouseEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type SectionDarkProps = typeof __propDef.props; export declare type SectionDarkEvents = typeof __propDef.events; export declare type SectionDarkSlots = typeof __propDef.slots; export default class SectionDark extends SvelteComponentTyped { } export {};