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