/** * Custom hook that intercepts all copy operations and forces them to copy plain text only (no formatting). * * This hook automatically enables plain text copying for the entire application when called. * * @example * ```tsx * function App() { * // Enable plain text copying for the entire app * useCopyAsPlainText() * * return
Your app content
* } * ``` */ export declare const useCopyAsPlainText: () => void; export default useCopyAsPlainText;