import { ButtonSize, ButtonVariant } from '../../../common/Button'; export interface ButtonProps { buttonTitle: string; buttonSize?: ButtonSize; buttonVariant?: ButtonVariant; name?: string; onClick?: React.MouseEventHandler; style?: React.CSSProperties; } declare const ItemWithButton: (props: ButtonProps) => import("react/jsx-runtime").JSX.Element; export default ItemWithButton;