import { BareProps } from '@polkadot/react-components/types'; import { Call } from '@polkadot/types/interfaces'; import { CallFunction } from '@polkadot/types/types'; import React from 'react'; interface Props extends BareProps { defaultValue: CallFunction; isDisabled?: boolean; isError?: boolean; isPrivate?: boolean; label?: React.ReactNode; onChange: (method?: Call) => void; onEnter?: () => void; onEscape?: () => void; withLabel?: boolean; } export default function ExtrinsicDisplay({ defaultValue, isDisabled, isError, isPrivate, label, onChange, onEnter, onEscape, withLabel }: Props): React.ReactElement; export {};