import { IResponse, IContext } from '../../types'; import { IAction } from '../../action'; export interface IGetFloatingIpActionApiRequest { action_id: string | number; ip: string; } export interface IGetFloatingIpActionApiResponse { action: IAction; } export type GetFloatingIpActionResponse = IResponse; export declare const getFloatingIpAction: ({ httpClient, }: IContext) => ({ action_id, ip, }: IGetFloatingIpActionApiRequest) => Promise>;