import HIDComponentProps from '../ComponentModel/HIDComponentModel'; import * as React from 'react'; interface IHIDLogoProps extends HIDComponentProps { /**height of the logo*/ height?: number; /**width of the logo*/ width?: number; /**variant for the logo*/ variant?: 'light' | 'dark'; } interface IHIDLogoState { } /** * ### The API documentation of the HID Logo React component. Learn more about the properties and the API Methods. * */ export default class HIDLogo extends React.Component { render(): JSX.Element; } export {};