import { ReactNode } from 'react'; import { type BaseButtonProps, type CustomBaseButtonProps } from './BaseButton.js'; type ChildrenProps = { /** A `ReactNode` element. */ children: ReactNode; }; type CartCheckoutButtonProps = Omit, 'onClick'> & ChildrenProps; /** * The `CartCheckoutButton` component renders a button that redirects to the checkout URL for the cart. * It must be a descendent of a `CartProvider` component. * @publicDocs */ export declare function CartCheckoutButton(props: CartCheckoutButtonProps): JSX.Element; /** @publicDocs */ export interface CartCheckoutButtonPropsForDocs extends Omit, 'onClick'> { } export {};