import { ReactNode } from 'react'; import { StyleType } from '../../common/types'; export interface ButtonProps { children?: ReactNode; disabled?: boolean | null; loading?: boolean; label: string; type: 'primary' | 'secondary' | 'default'; onPress?: () => void; customStyles: StyleType; }