import React from 'react'; export declare type ContentProps = { children?: React.ReactNode; verticalList?: boolean; /** adds top padding */ body?: boolean; }; export default function Content({ children, verticalList, body }: ContentProps): JSX.Element;