import Product from "./product.js";
declare class Price {
    priceId: string;
    productId: string;
    userId: string;
    currency: string;
    unitAmount: number;
    createdAt: Date;
    updatedAt: Date;
    product: Product;
}
export { Price as default };
