export default QRInstructions; declare function QRInstructions({ onClickStart: onClickStartProp, onTimeout, timeout }: { onClickStart: any; onTimeout: any; timeout: any; }): React.JSX.Element; declare namespace QRInstructions { namespace propTypes { let onClickStart: PropTypes.Requireable<(...args: any[]) => any>; let onTimeout: PropTypes.Requireable<(...args: any[]) => any>; let timeout: PropTypes.Requireable; } namespace defaultProps { let onClickStart_1: null; export { onClickStart_1 as onClickStart }; let onTimeout_1: null; export { onTimeout_1 as onTimeout }; let timeout_1: number; export { timeout_1 as timeout }; } } import React from 'react'; import PropTypes from 'prop-types';