import { ApiPayload, ComponentPayload, UnLinkComponentInput } from '@atlassian/forge-graphql-types'; declare module '../../config-as-code-requests' { interface ConfigAsCodeRequests { /** * Unlinks a component with data coming from the configuration as code file. * The following are performed: * Remove Data Manager * Remove External Alias * Returns an array of errors or success to the caller. * * **Required Oauth Scopes:** `write:component:compass` */ unlinkComponent(input: UnLinkComponentInput): Promise>; } }