import { ViewStyle, TextStyle } from 'react-native'; import { KeyCapStyleProps } from './types'; import type { PlatformBlocksTheme } from '../../core/theme/types'; export declare const useKeyCapStyles: (props: KeyCapStyleProps) => { container: ViewStyle; text: TextStyle; }; export declare const getKeyCapStyles: (theme: PlatformBlocksTheme, props: KeyCapStyleProps) => { container: ViewStyle; text: TextStyle; };