import React from 'react'; import './index.less'; type Props = { icon: React.ReactNode; onClick?: () => void; disabled?: boolean; }; export default function Btn(props: Props): import("react/jsx-runtime").JSX.Element; export {};