/// <reference types="react" />
import type { StyleProps } from "../utils/StyleTypes";
import type { Strings } from "../constants/strings";
export declare type InfoContainerProps = {
    children: React.ReactNode;
    titleString: keyof typeof Strings;
    bottomPadding?: boolean;
} & StyleProps;
export declare const InfoContainer: ({ children, titleString, bottomPadding, className, }: InfoContainerProps) => JSX.Element;
