import React from 'react'; type Props = { value: string; bgColor: string; textColor: string; size?: number; fontSize?: number; }; export declare function KeyBox({ value, bgColor, textColor, size, fontSize, }: Props): React.JSX.Element; export {};