/** * Initialization util should be implemented by services that need to have data fetched when the app loads. * * Ex: ApplicationService * Has data that is loaded at the start of the app. * This data will be loaded before the app completes loading. * This makes it ideal for grabbing things like lookup codes and permissions. */ export declare abstract class InitializationUtil { initialize: () => void; }