/// <reference types="react" />
export interface Props {
    /** The content to display inside the key */
    children?: string;
}
export default function KeyboardKey({ children }: Props): JSX.Element;
