import type { ReactNode } from 'react'; import type { WithAttributes } from '@pega/cosmos-react-core'; type CodeProps = WithAttributes<'code', { children: ReactNode; }>; declare const Code: ({ children, ...restProps }: CodeProps) => import("react/jsx-runtime").JSX.Element; export default Code; //# sourceMappingURL=Code.d.ts.map