type IconGridProps = {
    icons: string[];
    onClick: (icon: string) => void;
    defaultSelectdIcon?: string;
    showLabel?: boolean;
    minColumnWidth?: number;
    iconSize?: number;
    tileHeight?: number;
    contentPadding?: string;
};
declare const IconGrid: ({ icons, defaultSelectdIcon, onClick, showLabel, minColumnWidth, iconSize, tileHeight, contentPadding, }: IconGridProps) => import("react/jsx-runtime").JSX.Element;
export default IconGrid;
