/// import { ConfirmationDataType } from "../../pages/scope/ConfirmationTest"; import { ConfirmationModel, NetworkShortcutTestModel } from "../../services/confirmation.service.test"; declare type Props = { projectCode: string; item: ConfirmationDataType; data: ConfirmationDataType[]; networkShortcuts: NetworkShortcutTestModel[]; confirmations: ConfirmationModel[]; onChangeValue: (value: number | number[], elementCode: string, idCode: string) => void; onApprove: (elementCode: string, idCode: string) => void; onFinish: (elementCode: string, idCode: string) => void; }; export default function ItemConfirmation({ projectCode, item, data, networkShortcuts, confirmations, onChangeValue, onApprove, onFinish, }: Props): JSX.Element; export {};