/** @typedef {typeof __propDef.props} ListCardProps */ /** @typedef {typeof __propDef.events} ListCardEvents */ /** @typedef {typeof __propDef.slots} ListCardSlots */ export default class ListCard extends SvelteComponentTyped<{ settings: any; button: any; properties: any; image: any; text: any; icon: any; heading: any; price: any; imageSize: any; cardStyle: any; alignment: any; length: any; index: any; isSlide?: boolean | undefined; }, { [evt: string]: CustomEvent; }, {}> { } export type ListCardProps = typeof __propDef.props; export type ListCardEvents = typeof __propDef.events; export type ListCardSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { settings: any; button: any; properties: any; image: any; text: any; icon: any; heading: any; price: any; imageSize: any; cardStyle: any; alignment: any; length: any; index: any; isSlide?: boolean | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};