import type { BaseComponent } from "../base";
import type { Overrides } from "../overrides";
import type { StackProps } from "./stack";
export interface PackageProps extends BaseComponent {
    type: "package";
    package_id: string;
    is_selected_by_default: boolean;
    apple_promo_offer_product_code?: string | null;
    stack: StackProps;
    overrides?: Overrides<PackageProps>;
}
