import * as React from "react"; import { ICheckoutObject } from "./interfaces"; /** * * @param marketplaceId the public api key identifies which marketplace a checkout is being started from */ declare function initHalliday(marketplaceId: string): void; declare function HallidayButton({ checkoutObject, style }: { checkoutObject: ICheckoutObject; style?: any; }): React.JSX.Element; export { initHalliday, HallidayButton };