import { UserModifiableEntity } from '@sourceloop/core';
export declare class Service extends UserModifiableEntity {
    id: string;
    name: string;
    constructor(data?: Partial<Service>);
}
export interface ServiceRelations {
}
export type ServiceWithRelations = Service;
