import { Style } from 'inlines'; type CodeInputProps = { value?: string; onChange: (value: string) => void; language: 'js' | 'jsx' | 'ts' | 'tsx' | 'bash' | 'rust' | 'python' | 'json' | 'markdown' | 'css'; lineNumbers?: boolean; border?: boolean; error?: string; placeholder?: string; disabled?: boolean; rows?: 'adaptive' | number; label?: string; suffix?: string | React.ReactNode; description?: string; maxHeight?: number; style?: Style; }; declare function CodeInput({ language, value, onChange, lineNumbers, border, error, placeholder, disabled, rows, label, description, maxHeight, suffix, style, }: CodeInputProps): import("react/jsx-runtime").JSX.Element; export { CodeInput }; export type { CodeInputProps };