import * as React from 'react'; export interface IFixedProps { children?: any; } export default class Fixed extends React.Component { refs: { [key: string]: Element; fixedNode: HTMLElement; }; constructor(props: any); componentDidMount(): void; handleShortcuts(): void; componentWillUnmount(): void; render(): JSX.Element; }