import { MockJson } from "../types/components"; import { PartInformation } from "../types/part-information"; export interface PartInformationInterface { isDev: boolean; baseUrl: string; queryString?: string; abortController: AbortController; networkTimeoutRef: ReturnType; loadedResponse?: (response: PartInformation) => void; } type GetPartInformationProps = { partNumber: string; notAvailableMessage?: string; mockData: MockJson; scopedTimeoutRef: ReturnType; middlewareCallback?: (PartInformation: any) => void; }; export declare const getPartInformation: (component: PartInformationInterface, generalProps: GetPartInformationProps) => Promise; export {};