export declare class TodoEntity {
    id: string;
    name: string;
    completed?: boolean;
    constructor(params: TodoEntity);
}
