import { EntityFormat } from '../services/formatters/types';
/**
 * Common entity reference patterns used across the application
 */
export declare const ENTITY_PATTERNS: {
    readonly TOPIC_REFERENCE: "the topic";
    readonly TOKEN_REFERENCE: "the token";
    readonly ACCOUNT_REFERENCE: "the account";
    readonly TRANSACTION_REFERENCE: "the transaction";
    readonly CONTRACT_REFERENCE: "the contract";
};
export declare const ENTITY_TYPES: {
    readonly TOPIC: EntityFormat.TOPIC_ID;
    readonly TOKEN: EntityFormat.TOKEN_ID;
    readonly ACCOUNT: EntityFormat.ACCOUNT_ID;
    readonly TRANSACTION: "transaction";
    readonly CONTRACT: EntityFormat.CONTRACT_ID;
};
