import { IExecuteFunctions } from 'n8n-workflow';
export declare function pollTaskUntilComplete(this: IExecuteFunctions, socketaccesstoken: string, headers: Record<string, string>, options?: {
    maxAttempts?: number;
    pollingIntervalMs?: number;
    debug?: boolean;
}): Promise<string | null>;
