import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { active: any; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type MintSwapProps = typeof __propDef.props; export type MintSwapEvents = typeof __propDef.events; export type MintSwapSlots = typeof __propDef.slots; export default class MintSwap extends SvelteComponentTyped { } export {};