export declare enum ENTITY_TYPE { ACTION = "ACTION", WIDGET = "WIDGET", APPSMITH = "APPSMITH", JSACTION = "JSACTION" } type Props = { className?: string; entityId?: string; entityType: ENTITY_TYPE; onClick: any; showIconOnly?: boolean; }; export default function SearchSnippets(props: Props): JSX.Element; export {};