/** @typedef {typeof __propDef.props}  CloudIconProps */
/** @typedef {typeof __propDef.events}  CloudIconEvents */
/** @typedef {typeof __propDef.slots}  CloudIconSlots */
export default class CloudIcon extends SvelteComponentTyped<{
    [x: string]: any;
}, {
    [evt: string]: CustomEvent<any>;
}, {}> {
}
export type CloudIconProps = typeof __propDef.props;
export type CloudIconEvents = typeof __propDef.events;
export type CloudIconSlots = typeof __propDef.slots;
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
    props: {
        [x: string]: any;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export {};
