import React from "react";
import { IconProps } from "@primer/octicons-react";

//#region src/Octicon/Octicon.d.ts
/**
 * @deprecated Use the icon component directly from `@primer/octicons-react` instead
 */
type OcticonProps = {
  icon: React.ElementType;
  as?: React.ElementType;
} & IconProps;
/**
 * @deprecated Use the icon component directly from `@primer/octicons-react` instead
 */
declare const Octicon: React.ForwardRefExoticComponent<{
  icon: React.ElementType;
  as?: React.ElementType;
} & IconProps & React.RefAttributes<SVGSVGElement>>;
//#endregion
export { OcticonProps, Octicon as default };