import React from 'react'; import { CSS } from '../theme/stitches.config'; import { CodeVariantsProps } from './code.styles'; interface Props { block?: boolean; as?: keyof JSX.IntrinsicElements; } declare type NativeAttrs = Omit, keyof Props>; export declare type CodeProps = Props & NativeAttrs & CodeVariantsProps & { css?: CSS; }; declare const _default: React.ComponentType & Omit>; export default _default;