/// <reference types="react" />
import RoutesConfig from '../@types/RoutesConfig';
import './style.scss';
interface DisplayContainerProps<T extends string | number | symbol> {
    config: RoutesConfig<T>;
    className?: string;
}
declare function DisplayContainer<T extends string | number | symbol>({ config, className }: DisplayContainerProps<T>): JSX.Element;
export default DisplayContainer;
