import * as react from 'react'; import { HTMLAttributes } from 'react'; type PageShellBackground = 'plain' | 'grid' | 'glow'; type PageShellDensity = 'comfortable' | 'compact'; interface PageShellProps extends HTMLAttributes { as?: 'div' | 'main'; background?: PageShellBackground; density?: PageShellDensity; contentClassName?: string; } declare const PageShell: react.ForwardRefExoticComponent>; export { PageShell, type PageShellBackground, type PageShellDensity, type PageShellProps };