1export declare type PropertiesItem = { 2 type: 'comment'; 3 value: string; 4} | { 5 type: 'empty'; 6} | { 7 type: 'property'; 8 key: string; 9 value: string; 10}; 11export declare function parsePropertiesFile(contents: string): PropertiesItem[]; 12export declare function propertiesListToString(props: PropertiesItem[]): string; 13