export declare class PosInventoryCostLayer {
    id: number;
    variant_id: number;
    location_id: number;
    movement_id: number;
    purchase_receipt_item_id: number;
    cost_method: string;
    quantity: number;
    unit_cost: number;
    total_cost: number;
    remaining_quantity: number;
    remaining_cost: number;
    status: string;
    created_at: Date;
    updated_at: Date;
}
