/// import type { SVGProps } from "../global"; interface PlusIconProps { props?: SVGProps; disabled?: boolean; } declare const PlusIcon: ({ props, disabled }: PlusIconProps) => JSX.Element; export default PlusIcon; //# sourceMappingURL=PlusIcon.d.ts.map