import React from 'react'; import { ViewStyle, TextStyle } from 'react-native'; interface IconCircleProps { size?: number; children?: React.ReactNode; } declare const IconCircle: React.FC; interface PrimaryButtonProps { label?: string; onPress: () => void; iconRight?: React.ReactNode; loading?: boolean; disabled?: boolean; testID?: string; style?: ViewStyle; textStyle?: TextStyle; } declare const PrimaryButton: React.FC; export { IconCircle }; export { PrimaryButton }; export default PrimaryButton; //# sourceMappingURL=PrimaryButton.d.ts.map