import { Container } from 'inversify'; import { SchedulerConfigurationData } from './types'; import type { SetRequired } from 'type-fest'; /** * Must be called after typeorm `DataSource` is registered in the container. * @param container */ export declare const registerModule: (container: Container, schedulerConfig: SetRequired) => void;