import { BorrowerInformation, ProposalBorrowerInfo } from '../../../models/loan-summary.model';
import * as i0 from "@angular/core";
/**
* Borrower Information Component
*
* @description Displays key borrower/company details in a card layout.
* Supports both traditional BorrowerInformation and ProposalBorrowerInfo formats.
*
* @example
* ```html
*
*
* ```
*/
export declare class BorrowerInfoComponent {
/** The borrower/company information data (legacy format) */
borrowerInformation: BorrowerInformation;
/** The borrower information from proposal (new format) */
proposalBorrowerInfo: ProposalBorrowerInfo | null;
/** Get company name from either data source */
get companyName(): string;
/** Get CIN from either data source */
get cin(): string;
/** Get DIN from either data source */
get din(): string;
/** Get date of incorporation from either data source */
get dateOfIncorporation(): string;
/** Get PAN from either data source */
get pan(): string;
/** Get GST from either data source */
get gst(): string;
/** Get address from either data source */
get address(): string;
static ɵfac: i0.ɵɵFactoryDeclaration;
static ɵcmp: i0.ɵɵComponentDeclaration;
}