///
export default function CommandPalette({ recentSearchesKey, actions, getData, onChange, triggerProps, placeholder, }: {
recentSearchesKey?: string | undefined;
actions?: {
name: string;
icon: (props: import("react").SVGProps) => JSX.Element;
shortcut: string;
url: string;
}[] | undefined;
getData?: ((query: string) => Promise) | undefined;
onChange?: ((value: any) => any) | undefined;
triggerProps?: {} | undefined;
placeholder?: string | undefined;
}): JSX.Element;