Files
wdi-dashboard/node_modules/@chakra-ui/css-reset/dist/css-reset.d.ts

13 lines
393 B
TypeScript
Raw Normal View History

2024-08-16 15:06:52 +05:30
import * as react_jsx_runtime from 'react/jsx-runtime';
declare const CSSPolyfill: () => react_jsx_runtime.JSX.Element;
type CSSResetProps = {
/**
* The selector to scope the css reset styles to.
*/
scope?: string;
};
declare const CSSReset: ({ scope }: CSSResetProps) => react_jsx_runtime.JSX.Element;
export { CSSPolyfill, CSSReset, CSSResetProps, CSSReset as default };