import * as React from 'react' import { WithThemeInjectedProps, ApplyWithTheme } from '../../styles/themer/withTheme' export interface CircleButtonProps extends WithThemeInjectedProps, Pick, 'onClick'> { ariaLabel?: string children?: React.ReactNode /** Bool to disable click/touch listeners */ disabled?: boolean } declare const CircleButton: ApplyWithTheme> export default CircleButton