import { FC } from 'react';
import { ChipProps } from '../Chip';
import { KbdTheme } from './KbdTheme';
export interface KbdProps extends Omit<ChipProps, 'children' | 'theme'> {
    /**
     * Keycode for the Kbd.
     */
    keycode: string;
    /**
     * Theme for the Kbd.
     */
    theme?: KbdTheme;
}
export declare const Kbd: FC<KbdProps>;
