declare const DEFAULT_API_HOSTNAME = "api.workos.com";
declare const API_ENDPOINTS: {
    USERS: string;
    USER_ROLES: string;
    USER_INVITE: string;
    USER_INVITES: string;
    USER_INVITES_RESEND: (userId: string) => string;
};

export { API_ENDPOINTS, DEFAULT_API_HOSTNAME };
