import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { item?: string; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type BlockProps = typeof __propDef.props; export declare type BlockEvents = typeof __propDef.events; export declare type BlockSlots = typeof __propDef.slots; export default class Block extends SvelteComponentTyped { } export {};