import React from 'react'; import PropTypes from 'prop-types'; import { SerializedStyles } from '@emotion/react'; export interface ICoreProps { normalize?: SerializedStyles | boolean; children: React.ReactNode; } export declare const Core: { ({ normalize, children }: ICoreProps): JSX.Element; propTypes: { children: PropTypes.Requireable; normalize: PropTypes.Requireable; name: PropTypes.Validator; next: PropTypes.Requireable; styles: PropTypes.Validator; }> | null | undefined>>; }; };