import { SvelteComponent } from "svelte";
declare const __propDef: {
    props: {
        [x: string]: any;
        width?: number | undefined;
        height?: number | undefined;
        clickEvent?: Function | undefined;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
    exports?: undefined;
    bindings?: undefined;
};
export type LoadingIconProps = typeof __propDef.props;
export type LoadingIconEvents = typeof __propDef.events;
export type LoadingIconSlots = typeof __propDef.slots;
export default class LoadingIcon extends SvelteComponent<LoadingIconProps, LoadingIconEvents, LoadingIconSlots> {
}
export {};
