import * as React from 'react'; import '../../../index.scss'; import HIDComponentProps from '../ComponentModel/HIDComponentModel'; export interface HIDImageBackgroundProps extends HIDComponentProps { /** Variant to use. */ variant: '1' | '2'; } export interface HIDImageBackgroundState { } /** * ### The API documentation of the HID Image Background React component. Learn more about the properties and the API Methods. * */ export default class HIDImageBackground extends React.Component { render(): JSX.Element; }