import { CSSProperties } from 'react';
interface TextModeCodeProps {
    id?: string;
    options?: CSSProperties;
    schema: {
        title: string;
    };
    value?: string | number;
}
export default function TextModeCode({ id, schema: { title }, value, options }: TextModeCodeProps): import("react/jsx-runtime").JSX.Element;
export {};
