import { ContainerName } from '@/types/locatorApi'; export interface ContainerSvgAttributes { readonly name: ContainerName; readonly bodyColour?: string; readonly lidColour?: string; readonly label?: string; readonly colours?: { [key: string]: { [key: string]: string; }; }; } export default function ContainerSvg({ name, lidColour, bodyColour, label, colours, }: ContainerSvgAttributes): import("preact/compat").JSX.Element;