import { CashValueSummary, InstallationCountryReferenceCurrency, OpeningTransference, ReceiptFile } from './api-cash-operations.interfaces';
export type InstallationCountryReferenceCurrenciesOut = {
    total: number;
    installationCountryReferenceCurrencies: InstallationCountryReferenceCurrency[];
};
export type InstallationCountryReferenceCurrencyIn = {
    installationId?: number;
    countryReferenceCurrencyId: number;
    minCashValue?: number;
    maxCashValue?: number;
};
export type InstallationCountryReferenceCurrencyOut = {
    installationCountryReferenceCurrencies: InstallationCountryReferenceCurrency;
};
export type CashValueSummaryOut = {
    total: number;
    cashValueSummary: CashValueSummary[];
};
export type OpeningTransferenceIn = {
    openingId: number;
    amount: number;
    countryReferenceCurrencyId: number;
    transferenceTypeCode: string;
};
export type OpeningTransferenceOut = {
    openingTransference: OpeningTransference;
};
export type ReceiptFileOut = {
    receipt: ReceiptFile;
};
