import { FC, ReactNode } from 'react';

declare const Body: FC<{
    lightOnlyPages: string[];
    children: ReactNode;
}>;

export { Body };
