import React from 'react'; import './style.scss'; export interface CodeTab { id: string; label: string; code: string; language?: string; } export interface CodeModalProps { /** Whether the modal is open */ isOpen: boolean; /** Close handler */ onClose: () => void; /** Modal title */ title?: string; /** Code tabs to display */ tabs: CodeTab[]; /** Default active tab */ defaultTab?: string; /** Show line numbers in code */ showLineNumbers?: boolean; /** Custom width */ width?: string | number; /** Custom max width */ maxWidth?: string | number; } export declare const CodeModal: React.FC; //# sourceMappingURL=CodeModal.d.ts.map