///
import { ApiPayload, CompassCreateEventInput } from '@atlassian/forge-graphql-types';
declare module '../../compass-requests' {
interface CompassRequests {
/**
* Creates a new compass event. **Note: This method is unstable.**
*
* #### Required Oauth Scopes
* * write:event:compass
*/
createEvent(input: CompassCreateEventInput | CompassCreateEventInput[]): Promise;
}
}