import type * as React from "react";
import type { Size, IconForeground, IconProps } from "../types";
import type { Theme } from "../../../defaultTheme";
type getIconContainerType = ({ iconLeft, children, theme, size, iconForeground, }: {
    iconLeft?: React.ReactNode;
    children?: React.ReactNode;
    theme: Theme;
    size?: Size;
    iconForeground: IconForeground;
}) => {
    icons: IconProps;
};
declare const getIconContainer: getIconContainerType;
export default getIconContainer;
