import React from 'react'; import styles from './Touchable.module.scss'; export interface TouchableProps { ariaChecked?: boolean; ariaControls?: string; ariaExpanded?: boolean; ariaHasPopup?: boolean; ariaLabel?: string; ariaPressed?: boolean; block?: boolean; centered?: boolean; children?: React.ReactNode; className?: string; component?: React.ComponentType; componentProps?: React.ComponentProps; disabled?: boolean; hideFocus?: boolean; href?: string; id?: string; inline?: boolean; onClick?: (event: React.MouseEvent) => void; onFocus?: (event: React.MouseEvent) => void; onMouseEnter?: (event: React.MouseEvent) => void; onMouseLeave?: (event: React.MouseEvent) => void; onMouseOver?: (event: React.MouseEvent) => void; onBlur?: (event: React.KeyboardEvent) => void; ref?: any; rel?: string; role?: string; size?: 14 | 16; tabIndex?: number; target?: string; to?: string; type?: 'button' | 'submit' | 'reset'; wide?: boolean; } export declare type Props = TouchableProps; export declare const Touchable: React.ForwardRefExoticComponent; export default Touchable; export { styles }; //# sourceMappingURL=index.d.ts.map