1*9b26454eSBartosz Kaszubowskiexport type PropertiesItem = {
2082815dcSEvan Bacon    type: 'comment';
3082815dcSEvan Bacon    value: string;
4082815dcSEvan Bacon} | {
5082815dcSEvan Bacon    type: 'empty';
6082815dcSEvan Bacon} | {
7082815dcSEvan Bacon    type: 'property';
8082815dcSEvan Bacon    key: string;
9082815dcSEvan Bacon    value: string;
10082815dcSEvan Bacon};
11082815dcSEvan Baconexport declare function parsePropertiesFile(contents: string): PropertiesItem[];
12082815dcSEvan Baconexport declare function propertiesListToString(props: PropertiesItem[]): string;
13