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