/** * Props for {@link ScmIntegrationIcon}. * * @public */ export type ScmIntegrationIconProps = { /** * The integration type, e.g. "github". */ type?: string; }; /** * An icon that represents a certain SCM integration. * * @public */ export declare const ScmIntegrationIcon: (props: ScmIntegrationIconProps) => import("react/jsx-runtime").JSX.Element;