import * as React from "react"; import type { ButtonOwnProps } from "@mui/material/Button"; import type { BaseProps } from "@stratakit/foundations/secret-internals"; interface MuiButtonBaseProps extends BaseProps<"button">, Pick { } declare const MuiButtonBase: React.ForwardRefExoticComponent>; export { MuiButtonBase };