///
import { ButtonProps, LinkProps } from "./ListItem";
interface FreeSearchActionProps extends Omit {
index?: number;
label?: string;
searchIcon: any;
}
export default function FreeSearchAction({ label, searchIcon, ...props }: FreeSearchActionProps): JSX.Element;
export {};