type ShowIndicator = (msg: string) => void; type HideIndicator = () => void; export default interface Indicator { show: ShowIndicator; hide: HideIndicator; } declare const initialize: (show: ShowIndicator, hide: HideIndicator) => void; export { initialize };