import { FunctionComponent, HTMLProps, ReactNode } from 'react'; import { OneOf } from '../../typeUtils'; export const PageSectionVariants: { default: 'default'; light: 'light'; dark: 'dark'; darker: 'darker'; }; export interface PageSectionProps extends HTMLProps { children?: ReactNode; className?: string; variant?: OneOf; } declare const PageSection: FunctionComponent; export default PageSection;