import { SvelteComponentTyped } from "svelte"; import type { Mint } from '../../model/mint'; declare const __propDef: { props: { mintIndex: number; mint: Mint; activeMint: any; active: any; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type MintRowProps = typeof __propDef.props; export type MintRowEvents = typeof __propDef.events; export type MintRowSlots = typeof __propDef.slots; export default class MintRow extends SvelteComponentTyped { } export {};