/**

@example
```
import symbols = require('console-symbols');

console.log(symbols.success, 'Finished successfully!');

```
*/
declare const consoleSymbols: {
	readonly info: string;

	readonly success: string;

	readonly warning: string;

	readonly error: string;
};

export = consoleSymbols;
