import { SvelteComponent } from "svelte";
import type { Rotation } from "../types.js";
declare const __propDef: {
    props: {
        rotation?: Rotation;
        size?: number;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export type PlusIconProps = typeof __propDef.props;
export type PlusIconEvents = typeof __propDef.events;
export type PlusIconSlots = typeof __propDef.slots;
/** [See Docs](https://geist-ui-svelte.dev/components/icons?icon=plus) | [Open Issue](https://github.com/ieedan/geist-ui-svelte/issues/new) */
export default class PlusIcon extends SvelteComponent<PlusIconProps, PlusIconEvents, PlusIconSlots> {
}
export {};
