import type { CSSProperties } from 'react'; type KeyProps = { children: string; prominence?: 'strong' | 'default'; disabled?: boolean; size?: 'small' | 'medium'; sentiment?: 'neutral' | 'primary'; id?: string; className?: string; 'data-testid'?: string; style?: CSSProperties; }; export declare function Key({ children, prominence, disabled, size, sentiment, id, className, 'data-testid': dataTestId, style, }: KeyProps): import("react").JSX.Element; export declare namespace Key { var displayName: string; } export {}; //# sourceMappingURL=index.d.ts.map