import { SvelteComponentTyped } from "svelte";
export interface PlusIconProps {
    svgAttrs?: SVGProps;
}
import type { SVGProps } from "../types";
declare const __propDef: {
    props: {
        svgAttrs?: PlusIconProps["svgAttrs"];
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
type PlusIconProps_ = typeof __propDef.props;
export type PlusIconEvents = typeof __propDef.events;
export type PlusIconSlots = typeof __propDef.slots;
export default class PlusIcon extends SvelteComponentTyped<PlusIconProps_, PlusIconEvents, PlusIconSlots> {
}
export {};
