import React from 'react';
export interface IconListProps {
    /**
     * Search query to filter icons
     */
    searchQuery?: string;
    /**
     * Size of each icon
     */
    iconSize?: number;
    /**
     * Color of each icon
     */
    iconColor?: string;
    /**
     * Function to handle when an icon is clicked
     */
    onIconClick?: (iconName: string) => void;
}
export declare const IconList: React.FC<IconListProps>;
//# sourceMappingURL=IconList.d.ts.map