import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; leftAvatar?: string | undefined; leftIcon?: string | undefined; rightIcon?: string | undefined; rightAvatar?: string | undefined; title?: string | undefined; subTitle?: string | undefined; avatarRounded?: boolean | undefined; avatarSize?: "xxl" | "xl" | "lg" | "md" | "s" | "xs" | "xxs" | undefined; card?: boolean | undefined; }; events: { click: MouseEvent; iconLeft: CustomEvent; iconRight: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: { left: {}; default: {}; right: {}; }; }; export declare type TileProps = typeof __propDef.props; export declare type TileEvents = typeof __propDef.events; export declare type TileSlots = typeof __propDef.slots; export default class Tile extends SvelteComponentTyped { } export {};