import type { IconProps } from '@primer/octicons-react';
import React from 'react';
/**
 * @deprecated Use the icon component directly from `@primer/octicons-react` instead
 */
export 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>>;
export default Octicon;
//# sourceMappingURL=Octicon.d.ts.map