import { ButtonProps } from '../Button'; import { CallbackShape, CallbackSize } from './types'; export type CallbackProps = { image: string; title: string; description: string; price: string; button: ButtonProps; size: CallbackSize; shape?: CallbackShape; onClick?: () => void; }; export declare const Callback: ({ image, title, description, price, button, size, shape, }: CallbackProps) => import("react").JSX.Element;