export declare const resetStyle = "\n /*\n Remove all the styles of the \"User-Agent-Stylesheet\", except for the 'display' property\n - The \"symbol *\" part is to solve Firefox SVG sprite bug\n */\n *:where(:not(html, iframe, canvas, img, svg, video, pre):not(svg *, symbol *)) {\n all: unset;\n display: revert;\n }\n\n /*\n Remove default margin\n */\n * {\n margin: 0;\n font-variant-numeric: lining-nums;\n }\n\n /*\n - Add accessible line-height\n - Improve text rendering\n */\n body {\n line-height: 1.5;\n -webkit-font-smoothing: antialiased;\n }\n\n /* Preferred box-sizing value */\n *, *::before, *::after {\n box-sizing: border-box;\n }\n\n /*\n Avoid text overflows\n */\n p, h1, h2, h3, h4, h5, h6 {\n overflow-wrap: break-word;\n }\n\n /* Re-apply the pointer cursor for anchor tags */\n a, button {\n cursor: revert;\n }\n\n /* Remove list styles (bullets/numbers) */\n ol, ul, menu {\n list-style: none;\n }\n\n /*\n Improve media defaults\n */\n img, picture, video, canvas {\n display: block;\n max-width: 100%;\n }\n svg {\n display: block;\n }\n\n /* remove default style from blockquote */\n blockquote, q {\n quotes: none;\n }\n blockquote:before, blockquote:after, q:before, q:after {\n content: '';\n content: none;\n }\n\n /* removes spacing between cells in tables */\n table {\n border-collapse: collapse;\n border-spacing: 0;\n }\n\n /*\n Remove built-in form typography styles\n */\n input, button, textarea, select {\n font: inherit;\n }\n\n /* revert the 'white-space' property for textarea elements on Safari */\n textarea {\n white-space: revert;\n }\n\n /* minimum style to allow to style meter element */\n meter {\n -webkit-appearance: revert;\n appearance: revert;\n }\n\n /* hide elements with the 'hidden' attribute */\n :where([hidden]) {\n display: none;\n }\n\n /*\n revert for bug in Chromium browsers\n - fix for the content editable attribute will work properly.\n */\n :where([contenteditable]) {\n -moz-user-modify: read-write;\n -webkit-user-modify: read-write;\n overflowWrap: break-word;\n -webkit-line-break: after-white-space;\n }\n\n /* apply back the draggable feature - exist only in Chromium and Safari */\n :where([draggable=\"true\"]) {\n -webkit-user-drag: element;\n }\n\n /*\n Create a root stacking context\n */\n #__next {\n isolation: isolate;\n }\n"; //# sourceMappingURL=reset-style.d.ts.map