import { ComponentMeta } from "@plasmicapp/host/registerComponent"; import React from "react"; import { Registerable } from "./registerable"; interface EPAddToCartButtonProps { children?: React.ReactNode; enableStockCheck?: boolean; locationId?: string; locationSlug?: string; showStockStatus?: boolean; } export declare const epAddToCartButtonMeta: ComponentMeta; export declare function EPAddToCartButton(props: EPAddToCartButtonProps): React.JSX.Element | null; export declare function registerEPAddToCartButton(loader?: Registerable, customEPAddToCartButtonMeta?: ComponentMeta): void; export {};