import { Theme } from '@mui/material'; export declare const styles: { skeleton: { graph: { container: { position: "relative"; display: "flex"; alignItems: "center"; justifyContent: "space-between"; flexDirection: "column"; gap: ({ spacing }: Theme) => string; height: ({ spacing }: Theme) => string; }; grid: { display: "flex"; justifyContent: "space-between"; flex: "1 1 auto"; alignItems: "flex-end"; width: "100%"; }; }; histogram: { item: { flex: number; maxWidth: ({ spacing }: Theme) => string; '& + &': { marginLeft: string; }; }; }; legend: { display: "flex"; alignItems: "center"; gap: ({ spacing }: Theme) => string; height: ({ spacing }: Theme) => string; }; }; };