import { ResthooksEventEnum } from '../constants/enum/Resthooks'; declare class YouCanResthooks { getAllResthooks(): Promise; resthookSubscribe(event: ResthooksEventEnum, target_url: string): Promise; resthookUnsubscribe(resthookId: string): Promise; } export default YouCanResthooks;