/** @typedef {typeof __propDef.props}  SiQuicklookProps */
/** @typedef {typeof __propDef.events}  SiQuicklookEvents */
/** @typedef {typeof __propDef.slots}  SiQuicklookSlots */
export default class SiQuicklook extends SvelteComponent<{
    color?: string | undefined;
    size?: number | undefined;
    title?: string | undefined;
}, {
    [evt: string]: CustomEvent<any>;
}, {}> {
}
export type SiQuicklookProps = typeof __propDef.props;
export type SiQuicklookEvents = typeof __propDef.events;
export type SiQuicklookSlots = typeof __propDef.slots;
import { SvelteComponent } from "svelte";
declare const __propDef: {
    props: {
        color?: string | undefined;
        size?: number | undefined;
        title?: string | undefined;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export {};
