import type { FC } from 'react'; import './Stage.less'; interface StageProps { height: number; } declare const Stage: FC; export default Stage;