import { Product } from './plan/Product';
/** Plan information */
export interface Plan {
    /** Product code */
    code?: string;
    /** Product plan information */
    product: Product;
}
//# sourceMappingURL=Plan.d.ts.map