import React from 'react'; import { ComponentStatus, IComponentBaseProps } from '../types'; export type CodeMockupLineProps = React.HTMLAttributes & IComponentBaseProps & { dataPrefix?: string | boolean; status?: ComponentStatus; innerProps?: React.HTMLAttributes; innerRef?: React.Ref; }; export declare const CodeMockupLine: React.ForwardRefExoticComponent & IComponentBaseProps & { dataPrefix?: string | boolean | undefined; status?: "info" | "success" | "warning" | "error" | undefined; innerProps?: React.HTMLAttributes | undefined; innerRef?: React.Ref | undefined; } & React.RefAttributes>;