import { Typeform } from './typeform-types'; export declare class Webhooks { private _http; constructor(_http: Typeform.HTTPClient); create(args: { uid: string; tag: string; url: string; enabled?: boolean; secret?: string; verifySSL?: boolean; }): Promise; delete(args: { uid: string; tag: string; }): Promise; get(args: { uid: string; tag: string; }): Promise; list(args: { uid: string; }): Promise; toggle(args: { uid: string; tag: string; enabled: boolean; }): Promise; update(args: { uid: string; tag: string; url: string; enabled?: boolean; secret?: string; verifySSL?: boolean; }): Promise; }