import { MQ } from 'newskit'; export interface ContentContainerProps { children: React.ReactNode; width?: MQ; maxWidth?: MQ; paddingInline?: MQ; paddingBlockStart?: MQ; fullWidth?: boolean; marginInline?: MQ; justifyContent?: MQ; } export type MainContentProps = ContentContainerProps;