import { RawPricingContext } from "./types";
import "./Form.css";
import "./PricingPlansEditor.css";
interface PricingPlansEditorProps {
    pricingContext: RawPricingContext;
    returnTo: string;
    theme?: string;
    onSave: (pricingContext: RawPricingContext) => void;
}
export declare function PricingPlansEditor({ theme, pricingContext, returnTo, onSave, }: PricingPlansEditorProps): import("react/jsx-runtime").JSX.Element;
export {};
