import PropTypes from 'prop-types';
import { ContentProps } from './Page.types';
declare const Content: {
    ({ children, stickyStyle }: ContentProps): any;
    displayName: string;
    propTypes: {
        /** Accept single or multiple compound <Cell/> elements which store content items. Other nodes are accepted but not recommended. */
        children: PropTypes.Validator<NonNullable<PropTypes.ReactNodeLike>>;
        /** Specifies a CSS class name to be appended to the component’s root element. */
        className: PropTypes.Requireable<string>;
        /** Stretches the component to a full screen mode */
        fullScreen: PropTypes.Requireable<boolean>;
    };
};
export default Content;
//# sourceMappingURL=Content.d.ts.map