export declare class TodoMockDto {
    id: string;
    title: string;
    completed: boolean;
    constructor(params: TodoMockDto);
}
