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 RefreshIconProps = typeof __propDef.props;
export type RefreshIconEvents = typeof __propDef.events;
export type RefreshIconSlots = typeof __propDef.slots;
export default class RefreshIcon extends SvelteComponent<RefreshIconProps, RefreshIconEvents, RefreshIconSlots> {
}
export {};
