import { IResponse, IContext } from '../../types'; export interface IAddTagsToFirewallApiRequest { firewall_id: string; tags: string[]; } export type AddTagsToFirewallResponse = IResponse; export declare const addTagsToFirewall: ({ httpClient, }: IContext) => ({ firewall_id, tags, }: IAddTagsToFirewallApiRequest) => Promise>;