import { ButtonProps } from "../ui/base/button"; declare const Checkout: ({ slicerId, buttonLabel, buttonProps, storeLink, onSuccess, onError }: { slicerId?: number; storeLink?: string; buttonLabel?: string; buttonProps?: ButtonProps; onSuccess?: () => void | Promise; onError?: () => void | Promise; }) => import("react/jsx-runtime").JSX.Element; export default Checkout;