/** @typedef {typeof __propDef.props}  SiAppiumProps */
/** @typedef {typeof __propDef.events}  SiAppiumEvents */
/** @typedef {typeof __propDef.slots}  SiAppiumSlots */
export default class SiAppium extends SvelteComponent<{
    color?: string | undefined;
    size?: number | undefined;
    title?: string | undefined;
}, {
    [evt: string]: CustomEvent<any>;
}, {}> {
}
export type SiAppiumProps = typeof __propDef.props;
export type SiAppiumEvents = typeof __propDef.events;
export type SiAppiumSlots = 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 {};
