import type { FunctionComponent } from 'react'; import IconButton from './IconButton'; import UtilityButton from './UtilityButton'; import type { ButtonProps } from './Button'; interface CompoundButtonProps extends FunctionComponent { Icon: typeof IconButton; Utility: typeof UtilityButton; } declare const CompoundButton: CompoundButtonProps; export default CompoundButton;