import { AppLauncherProduct } from "./AppLauncher";
declare global {
    interface Window {
        renderAppLauncher: (elementId: string, products: AppLauncherProduct[], options?: {
            dropdownStyles?: any;
            svgColor?: string;
            position?: "right" | "left" | "center";
        }) => void;
    }
}
