export type Prefixes = 'lines' | 'command'; type CodeContentProps = { children: string; prefix?: Prefixes; multiline?: boolean; showMore?: boolean; hasShowMoreButton?: boolean; lines?: string[]; noExpandable: boolean; rows: number; }; export declare const CodeContent: ({ children, prefix, multiline, showMore, hasShowMoreButton, lines, noExpandable, rows, }: CodeContentProps) => import("react").JSX.Element; export {}; //# sourceMappingURL=CodeContent.d.ts.map