import * as React from 'react'; /** * How to use: spread the handlers to the .MuiCode-root * * The html structure should be: *
*
...
* *
*/ export declare function useCodeCopy(): React.HTMLAttributes; interface CodeCopyProviderProps { children: React.ReactNode; } /** * Place at the page level. It will check the keydown event and try to initiate copy click if rootNode exist. * Any code block inside the tree can set the rootNode when mouse enter to leverage keyboard copy. */ export declare function CodeCopyProvider({ children }: CodeCopyProviderProps): import("react/jsx-runtime").JSX.Element; export {};