import * as react from 'react'; interface Props$1 { circuitJson: any[]; containerStyle?: React.CSSProperties; defaultEditMode?: boolean; debugGrid?: boolean; editingEnabled?: boolean; debug?: boolean; } declare const AssemblyViewer: ({ circuitJson, containerStyle, debugGrid, debug, }: Props$1) => react.JSX.Element; interface Props { circuitJson: any[]; containerStyle?: React.CSSProperties; defaultEditMode?: boolean; debugGrid?: boolean; editingEnabled?: boolean; debug?: boolean; } declare const PinoutViewer: ({ circuitJson, containerStyle, debugGrid, debug, }: Props) => react.JSX.Element; export { AssemblyViewer, PinoutViewer };