import { AxiosInstance } from 'axios'; declare type TObterWebhookCadastradoProps = { axios: AxiosInstance; accessToken: string; }; export declare type TObterWebhookCadastradoResponse = { webhookUrl: string; criacao: string; }; export declare const obterWebhookCadastrado: (props: TObterWebhookCadastradoProps) => Promise; export {};