import { ReactNode } from 'react'; export type CSSValue = string | number; export type PageLayoutProps = { paddingTop?: CSSValue; paddingBottom?: CSSValue; minHeight?: CSSValue; children: ReactNode; className?: string; };