export type SearchShortcutProps = {
    combination: string;
    text: string;
    className?: string;
};
export declare function SearchShortcut({ combination, text, className }: SearchShortcutProps): JSX.Element;
