interface Config { closeIcon: string; checkIcon: string; alertIcon: string; successIcon: string; } declare const state: Config; export { state as config }; export declare function setConfig(newConfig: Config): void;