import { FC } from 'react'; declare type Props = { onPress: () => void; src?: string; text?: string; disabled?: boolean; color?: string; colorDisabled?: string; circleColor?: string; }; declare const CircleButton: FC; export default CircleButton;