import { ThirdPartyAPIEntryProps } from "@tradetrust-tt/address-identity-resolver"; import { FunctionComponent } from "react"; interface EndpointEntryProps { orderNumber: number; api: string; name: string; apiHeader: string; apiKey: string; canEdit: boolean; removeEndpoint: () => void; onMoveEntryUp?: () => void; onMoveEntryDown?: () => void; onUpdateEndpoint: (newValues: ThirdPartyAPIEntryProps) => void; isEndpointUrlExists: (endpoint: string) => boolean; } export declare const EndpointEntry: FunctionComponent; export {};