/** @typedef {typeof __propDef.props} BiArchiveProps */ /** @typedef {typeof __propDef.events} BiArchiveEvents */ /** @typedef {typeof __propDef.slots} BiArchiveSlots */ export default class BiArchive extends SvelteComponentTyped<{}, { [evt: string]: CustomEvent; }, {}> { } export type BiArchiveProps = typeof __propDef.props; export type BiArchiveEvents = typeof __propDef.events; export type BiArchiveSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: {}; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};