@coursebuilder/commerce-next
Version:
Commerce Functionality for Course Builder with Next.js
21 lines • 791 B
TypeScript
import { z } from 'zod';
declare const buyMoreSeatsSchema: z.ZodObject<{
productId: z.ZodString;
userId: z.ZodString;
buttonLabel: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>;
className: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
productId: string;
userId: string;
className?: string | undefined;
buttonLabel?: string | null | undefined;
}, {
productId: string;
userId: string;
className?: string | undefined;
buttonLabel?: string | null | undefined;
}>;
type BuyMoreSeatsProps = z.infer<typeof buyMoreSeatsSchema>;
export declare const BuyMoreSeats: ({ productId, userId, buttonLabel, className, }: BuyMoreSeatsProps) => import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=buy-more-seats.d.ts.map