import "react-grid-layout/css/styles.css";
type DashboardProps = {
    apiKey: string;
    userId: string;
    dashboardId: string;
    activeConnection: string;
    marginLeft: string;
    marginTop: string;
    brandColor: string;
    backgroundColor: string;
};
export default function Dashboard({ dashboardId, activeConnection, apiKey, userId, marginLeft, marginTop, brandColor, backgroundColor, }: DashboardProps): import("react/jsx-runtime").JSX.Element;
export {};
