import { Bone } from 'leoric';
import { HookType } from '../../common/enum/Hook';
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;
}
