import type { ColorMode } from "../types";
import type { VariableDictionary } from "../utils/variable-utils";
export interface PurchaseState {
    selectedPackageId?: string;
    locale: string;
    defaultLocale: string;
    variablesPerPackage?: Record<string, VariableDictionary>;
    colorMode: ColorMode;
}
