import React from 'react'; import './index.less'; export interface ScanProps { onChange: (val: string) => void; onCancel: () => void; } declare const Scan: (props: ScanProps) => React.JSX.Element; export default Scan;