import { IResponse, IContext } from '../../types'; import { IAction } from '../../action'; export interface IEnableDropletIpv6ApiResponse { action: IAction; } export interface IEnableDropletIpv6ApiRequest { droplet_id: number; } export type EnableDropletIpv6Response = IResponse; export declare const enableDropletIpv6: ({ httpClient, }: IContext) => ({ droplet_id, }: IEnableDropletIpv6ApiRequest) => Promise>;