import { InternalBaseComponentProps } from "../internal/base-component/use-base-component"; import { CodeViewProps } from "./interfaces"; type InternalCodeViewProps = CodeViewProps & InternalBaseComponentProps; export declare function InternalCodeView({ content, actions, lineNumbers, wrapLines, highlight, ariaLabel, ariaLabelledby, i18nStrings, __internalRootRef, ...props }: InternalCodeViewProps): import("react/jsx-runtime").JSX.Element; export {};