import { PropsWithChildren } from 'react'; interface Props { disabled?: boolean; loading?: boolean; onClick?: () => void; } export default function ROOTButton(props: PropsWithChildren): JSX.Element; export {};