import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; title: string; description: string; image: string; buttonText: string; buttonUrl: string; buttonIcon: string; theme?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type SurfaceCardProps = typeof __propDef.props; export declare type SurfaceCardEvents = typeof __propDef.events; export declare type SurfaceCardSlots = typeof __propDef.slots; export default class SurfaceCard extends SvelteComponentTyped { } export {};