import type { FunctionComponent } from 'react'; export interface AnsibleProps extends React.DetailedHTMLProps, HTMLElement> { /** Supported/unsupported variant flag */ isSupported?: boolean; /** Red Hat Ansible Automation Platform technology icon */ isRHAAP?: boolean; /** Ansible icon className */ className?: string; /** Custom OUIA ID */ ouiaId?: string | number; } declare const Ansible: FunctionComponent; export default Ansible;