export type Entry = {
    key: string;
    value?: string;
};
export type Comment = {
    text: string;
};
