/** * These rules affect all the global elements on the `body` element of the * page when the `DSProvider` component is used. */ declare const global: { body: { boxSizing: string; bg: string; color: string; fontFamily: string; fontSize: string; fontWeight: string; lineHeight: string; overflowX: string; _dark: { bg: string; color: string; }; }; a: { color: string; }; b: { fontWeight: string; }; strong: { fontWeight: string; }; svg: { display: string; }; "button, select, input, textarea": { "&:not([disabled])": { _focus: { zIndex: number; boxShadow: string; outline: string; outlineOffset: string; outlineColor: string; _dark: { outlineColor: string; }; }; }; }; "iframe, [tabindex], [href], [contentEditable='true']": { _focus: { boxShadow: string; outline: string; outlineOffset: string; outlineColor: string; _dark: { outlineColor: string; }; }; }; "*, *::before, &::after": { boxSizing: string; }; ".chakra-modal__content-container": { zIndex: string; }; ".chakra-modal__overlay": { zIndex: string; }; }; export default global;