import React from "react"; import { ButtonControlProps } from "./control.button.props"; /** * Form control definition */ declare function ButtonControl(props: ButtonControlProps & React.PropsWithChildren): JSX.Element; export { ButtonControl }; export default ButtonControl;