import { BaseEntity } from 'typeorm';
export declare class ServiceInfoEntity extends BaseEntity {
    id: number;
    title: string | null;
    description: string | null;
    image: string | null;
    displayOrder: number | null;
    createdAt: Date;
    updatedAt: Date;
}
