import { Entity } from '@loopback/repository';
export declare class WebhookSecret extends Entity {
    secret: string;
    context: string;
    constructor(data?: Partial<WebhookSecret>);
}
