import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { step: any; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type OnboardingInfoProps = typeof __propDef.props; export type OnboardingInfoEvents = typeof __propDef.events; export type OnboardingInfoSlots = typeof __propDef.slots; export default class OnboardingInfo extends SvelteComponentTyped { } export {};