import React from 'react'; interface TransactionHeaderProps { onOpenDialog: (tipo: 'receita' | 'despesa') => void; onOpenCartaoCreditoDialog: () => void; disableAdicionar?: boolean; } export function TransactionHeader({ onOpenDialog, onOpenCartaoCreditoDialog, disableAdicionar = false, }: TransactionHeaderProps) { return (
); }