import { Fiat } from '../response';
import { Currency } from './Currency';
import { CustomerUpdate } from './CustomerUpdate';
import { TrcType } from './TrcType';
export declare class CreateTrcOffchain {
    symbol: string;
    description: string;
    type: TrcType;
    supply: string;
    decimals: number;
    basePair: Currency | Fiat;
    baseRate?: number;
    chain?: Currency;
    accountingCurrency?: Fiat;
    xpub: string;
    address: string;
    derivationIndex: number;
    customer?: CustomerUpdate;
}
