import { Theme } from '@mui/material'; export declare const styles: { root: { display: "flex"; flexDirection: "column"; gap: (theme: Theme) => string; }; item: { '&[data-disabled="true"]': { color: (theme: Theme) => string; }; }; row: { display: "flex"; alignItems: "center"; gap: (theme: Theme) => string; '& + &': { marginTop: (theme: Theme) => string; }; }; };