export interface ActionButtonProps { label: string; onPress: () => void; variant?: 'primary' | 'secondary'; loading?: boolean; disabled?: boolean; }