import { IntegrationId } from './public-types';
/**
 * Holds authentication token for the specified integration.
 * @category Auth
 */
export interface AuthData {
    /** Authentication token for the specified integration. */
    token: string | undefined;
    /** Optional integration ID associated with the authentication. */
    integrationId?: IntegrationId;
}
