/** * A payment pricepoint */ export declare const PaymentPricepointType: import("../utils/schema").SchemaObjectType<{ /** * Credits */ credits: { default: true; type: "Float"; }; /** * Local currency */ localCurrency: { default: true; type: "String"; }; /** * User price */ userPrice: { default: true; type: "String"; }; }>;