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