import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { title: any; subTitle: any; image: any; description: any; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type UserReviewProps = typeof __propDef.props; export declare type UserReviewEvents = typeof __propDef.events; export declare type UserReviewSlots = typeof __propDef.slots; export default class UserReview extends SvelteComponentTyped { } export {};