import { CallbackSize, CallbackShape } from '../../components/Callback'; export type CallbackModuleProps = { title: string; description: string; price: string | null; zenpatientId: string; signupUrl: string; image: string; size: CallbackSize; shape: CallbackShape; trackingLocation?: string; }; export declare function CallbackModule({ title, zenpatientId, description, price, signupUrl, image, size, shape, trackingLocation, }: CallbackModuleProps): import("react").JSX.Element;