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