import { OwlAccessBetaAccountsAddClaimsToAccessTokenInput, OwlAccessBetaAccountsAddClaimsToAccessTokenOutput } from '../types'; /** * Generate an access token based on a past access token (same payload) but with additional claims. The new claims will be added to the list of current claims (ex: current per: ['owl.manager'], new claims ['owl.manager', 'owl.workspaces.abcdef']). This operation is called only from the portal with a valid access token. * @param req query parameters * @returns TODO */ export declare const addClaimsToAccessToken: (parameters: OwlAccessBetaAccountsAddClaimsToAccessTokenInput) => Promise;