import { DetailedHTMLProps, HtmlHTMLAttributes, FC } from 'react';

interface BodyProps extends DetailedHTMLProps<HtmlHTMLAttributes<HTMLBodyElement>, HTMLBodyElement> {
    lightOnlyPages?: string[];
}
declare const Body: FC<BodyProps>;

export { Body, type BodyProps };
