import { SxProps, Theme, TypographyProps } from '@mui/material';
export interface ColumnModel {
    text: string;
    position: string;
    weight?: string;
    color?: string;
    size?: string;
    typographyProps?: TypographyProps;
}
export interface ListRowPropsModel {
    columns: Array<ColumnModel>;
    hideDividerTop?: boolean;
    hideDividerBottom?: boolean;
    sx?: SxProps<Theme>;
}
