import { type IOrganizationIpAllowlistService } from "@gooddata/sdk-backend-spi"; import { type IIpAllowlist, type IIpAllowlistDefinition } from "@gooddata/sdk-model"; import { type TigerAuthenticatedCallGuard } from "../../types/index.js"; export declare class OrganizationIpAllowlistService implements IOrganizationIpAllowlistService { readonly authCall: TigerAuthenticatedCallGuard; constructor(authCall: TigerAuthenticatedCallGuard); getAll(): Promise; create(definition: IIpAllowlistDefinition): Promise; update(definition: IIpAllowlistDefinition): Promise; delete(id: string): Promise; } //# sourceMappingURL=ipAllowlists.d.ts.map