export type ConcreteYardsResult = { /** * Total cubic yards including waste */ cubic_yards: number; /** * Volume in cubic feet (no waste) */ cubic_feet: number; /** * Bags of 60-lb premix needed */ bags_60lb: number; /** * Bags of 80-lb premix needed */ bags_80lb: number; /** * Extra cuyd from waste factor */ waste_included_cuyd: number; }; //# sourceMappingURL=ConcreteYardsResult.d.ts.map