declare const VOLUME_COMPARISONS: readonly [{ readonly asset: "motorcycle"; readonly subtitleKey: "shareable.volumeCompare.motorcycle.subtitle"; readonly weightKg: 300; }, { readonly asset: "shark"; readonly subtitleKey: "shareable.volumeCompare.shark.subtitle"; readonly weightKg: 1000; }, { readonly asset: "car"; readonly subtitleKey: "shareable.volumeCompare.car.subtitle"; readonly weightKg: 1500; }, { readonly asset: "van"; readonly subtitleKey: "shareable.volumeCompare.van.subtitle"; readonly weightKg: 2000; }, { readonly asset: "pickupTruck"; readonly subtitleKey: "shareable.volumeCompare.pickupTruck.subtitle"; readonly weightKg: 3000; }, { readonly asset: "helicopter"; readonly subtitleKey: "shareable.volumeCompare.helicopter.subtitle"; readonly weightKg: 5000; }, { readonly asset: "elephant"; readonly subtitleKey: "shareable.volumeCompare.elephant.subtitle"; readonly weightKg: 6000; }, { readonly asset: "trex"; readonly subtitleKey: "shareable.volumeCompare.trex.subtitle"; readonly weightKg: 7000; }, { readonly asset: "yacht"; readonly subtitleKey: "shareable.volumeCompare.yacht.subtitle"; readonly weightKg: 8000; }, { readonly asset: "truck"; readonly subtitleKey: "shareable.volumeCompare.truck.subtitle"; readonly weightKg: 10000; }, { readonly asset: "bus"; readonly subtitleKey: "shareable.volumeCompare.bus.subtitle"; readonly weightKg: 15000; }, { readonly asset: "jet"; readonly subtitleKey: "shareable.volumeCompare.jet.subtitle"; readonly weightKg: 20000; }, { readonly asset: "airplane"; readonly subtitleKey: "shareable.volumeCompare.airplane.subtitle"; readonly weightKg: 40000; }]; export type VolumeComparisonAssetName = (typeof VOLUME_COMPARISONS)[number]['asset']; export declare const getVolumeComparison: (volumeKg: number) => { readonly asset: "motorcycle"; readonly subtitleKey: "shareable.volumeCompare.motorcycle.subtitle"; readonly weightKg: 300; } | { readonly asset: "shark"; readonly subtitleKey: "shareable.volumeCompare.shark.subtitle"; readonly weightKg: 1000; } | { readonly asset: "car"; readonly subtitleKey: "shareable.volumeCompare.car.subtitle"; readonly weightKg: 1500; } | { readonly asset: "van"; readonly subtitleKey: "shareable.volumeCompare.van.subtitle"; readonly weightKg: 2000; } | { readonly asset: "pickupTruck"; readonly subtitleKey: "shareable.volumeCompare.pickupTruck.subtitle"; readonly weightKg: 3000; } | { readonly asset: "helicopter"; readonly subtitleKey: "shareable.volumeCompare.helicopter.subtitle"; readonly weightKg: 5000; } | { readonly asset: "elephant"; readonly subtitleKey: "shareable.volumeCompare.elephant.subtitle"; readonly weightKg: 6000; } | { readonly asset: "trex"; readonly subtitleKey: "shareable.volumeCompare.trex.subtitle"; readonly weightKg: 7000; } | { readonly asset: "yacht"; readonly subtitleKey: "shareable.volumeCompare.yacht.subtitle"; readonly weightKg: 8000; } | { readonly asset: "truck"; readonly subtitleKey: "shareable.volumeCompare.truck.subtitle"; readonly weightKg: 10000; } | { readonly asset: "bus"; readonly subtitleKey: "shareable.volumeCompare.bus.subtitle"; readonly weightKg: 15000; } | { readonly asset: "jet"; readonly subtitleKey: "shareable.volumeCompare.jet.subtitle"; readonly weightKg: 20000; } | { readonly asset: "airplane"; readonly subtitleKey: "shareable.volumeCompare.airplane.subtitle"; readonly weightKg: 40000; } | undefined; export {};