import { AllAPIResponses, FilterType } from './../../../index'; declare type Payload = { analysis: string; channelName: string; endTime?: string; startTime?: string; filters?: FilterType[]; nodeId: number; uniqueId: number; }; declare const post: (payload: Payload, headers?: Headers | undefined) => Promise>; export default post;