import type { DividerProps as MuiDividerProps } from '@mui/material';
interface DividerProps extends MuiDividerProps {
    orientation?: 'horizontal' | 'vertical';
}
export type { DividerProps };
