import React from 'react'; /** * 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) => React.JSX.Element;