import type { HookType } from '../../common/enum/Hook.ts';
import { Bone } from '../util/leoric.ts';
export declare class Hook extends Bone {
    id: bigint;
    createdAt: Date;
    updatedAt: Date;
    hookId: string;
    type: HookType;
    ownerId: string;
    name: string;
    endpoint: string;
    secret: string;
    latestTaskId: string;
    enable: boolean;
}
