import { PropsWithChildren } from 'react'; import './Options.less'; interface OptionsProps { visiable?: boolean; className?: string; style?: any; } export default function Options(props: PropsWithChildren): JSX.Element; export {};