import { TypographyProps } from '@mui/material';
import { ReactNode } from 'react';
export interface LocationOutputModel {
    title?: string;
    titleProps?: Omit<TypographyProps, 'children'>;
    children?: ReactNode | ReactNode[];
}
