export interface IndexRateSource { creationDate?: string; encodedKey?: string; id?: string; lastModifiedDate?: string; name?: string; notes?: string; type?: IndexRateSourceTypeEnum; } export declare const IndexRateSourceTypeEnum: { readonly InterestRate: "INTEREST_RATE"; readonly TaxRate: "TAX_RATE"; readonly WithholdingTaxRate: "WITHHOLDING_TAX_RATE"; readonly PrincipalTaxRate: "PRINCIPAL_TAX_RATE"; }; export type IndexRateSourceTypeEnum = (typeof IndexRateSourceTypeEnum)[keyof typeof IndexRateSourceTypeEnum];