import { type Booth, type RegularBooth } from "../store/BoothStore";
export interface Img {
    booth: Booth;
    name?: string;
    htmlImage: HTMLImageElement;
    bounds: {
        x: number;
        y: number;
        width: number;
        height: number;
        angle: number;
    };
}
/** @deprecated use loadBoothsImages instead */
export default function logosFromBooths(booths: RegularBooth[]): Promise<Img[]>;
export declare function loadIcons(svgImages: SVGImageElement[]): Promise<Img[]>;
//# sourceMappingURL=imageloader.d.ts.map