import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { title: string; description: string; image: string; id?: number | string; index: number; align?: string; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type BoxCategoryProps = typeof __propDef.props; export declare type BoxCategoryEvents = typeof __propDef.events; export declare type BoxCategorySlots = typeof __propDef.slots; export default class BoxCategory extends SvelteComponentTyped { } export {};