import * as React from 'react'; import '../../../index.scss'; import HIDComponentProps from '../ComponentModel/HIDComponentModel'; export interface HIDFooterProps extends HIDComponentProps { /** year */ year?: number; /** Privacy statement link */ privacyStatementLink?: string; /** Terms of use link */ termsOfUseLink?: string; /** Position of the footer */ fixed?: boolean; } export interface HIDFooterState { year?: number; privacyStatementLink?: string; termsOfUseLink?: string; } /** * ### The API documentation of the HID Footer React component. Learn more about the properties and the API Methods. * */ export default class HIDFooter extends React.Component { state: HIDFooterState; render(): JSX.Element; }