import { IRedisSMQConfig } from 'redis-smq';
export type THttpApiConfig = {
    port?: number;
    hostname?: string;
    basePath?: string;
};
export interface IRedisSMQHttpApiConfig extends IRedisSMQConfig {
    apiServer?: THttpApiConfig;
}
export type IRedisSMQHttpApiParsedConfig = Omit<IRedisSMQHttpApiConfig, 'apiServer'> & {
    apiServer: Required<THttpApiConfig>;
};
//# sourceMappingURL=index.d.ts.map