import { type OcticonProps as PrimerOcticonProps } from '@primer/react/deprecated'; import { type SxProp } from '../../sx'; /** * @deprecated Use the icon component directly from `@primer/octicons-react` instead */ export type OcticonProps = PrimerOcticonProps & SxProp & { color?: string; }; declare const Octicon: import("react").ForwardRefExoticComponent<{ icon: React.ElementType; as?: React.ElementType; } & import("@primer/octicons-react").IconProps & SxProp & { color?: string; } & import("react").RefAttributes>; export default Octicon; export { Octicon }; //# sourceMappingURL=Octicon.d.ts.map