import { OnInit, EventEmitter } from '@angular/core'; import { Proposal } from '../../../models/loan-summary.model'; import * as i0 from "@angular/core"; export declare class ProposalInboxComponent implements OnInit { /** Custom proposals data. If not provided, will fetch from service */ proposals: Proposal[]; /** Whether to auto-load proposals from service */ autoLoad: boolean; /** Emitted when a proposal action is triggered */ proposalAction: EventEmitter<{ action: string; proposal: Proposal; }>; displayedColumns: string[]; isLoading: boolean; private loanSummaryService; ngOnInit(): void; loadProposals(): void; openProfilingLogs(): void; getStatusColor(status: string): string; formatCurrency(amount: number): string; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }