import type { FC } from 'react';
import './index.less';
interface IDeviceProps {
    url: string;
    inlineHeight?: number;
}
declare const Device: FC<IDeviceProps>;
export default Device;
