/** @typedef {typeof __propDef.props} TestimonialCardProps */ /** @typedef {typeof __propDef.events} TestimonialCardEvents */ /** @typedef {typeof __propDef.slots} TestimonialCardSlots */ export default class TestimonialCard extends SvelteComponentTyped<{ settings: any; properties: any; background: any; stars: any; alignment: any; text?: string | undefined; isSlide?: boolean | undefined; by?: string | undefined; }, { [evt: string]: CustomEvent; }, {}> { } export type TestimonialCardProps = typeof __propDef.props; export type TestimonialCardEvents = typeof __propDef.events; export type TestimonialCardSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { settings: any; properties: any; background: any; stars: any; alignment: any; text?: string | undefined; isSlide?: boolean | undefined; by?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};