export declare const DEFAULT_QUERY_CHANNELS_MESSAGE_LIST_PAGE_SIZE = 25;
export declare const DEFAULT_QUERY_CHANNEL_MESSAGE_LIST_PAGE_SIZE = 100;
export declare const DEFAULT_MESSAGE_SET_PAGINATION: Readonly<{
    hasNext: false;
    hasPrev: false;
}>;
export declare const DEFAULT_UPLOAD_SIZE_LIMIT_BYTES: number;
export declare const API_MAX_FILES_ALLOWED_PER_MESSAGE = 10;
export declare const MAX_CHANNEL_MEMBER_COUNT_IN_CHANNEL_QUERY = 100;
export declare const RESERVED_UPDATED_MESSAGE_FIELDS: Readonly<{
    created_at: true;
    deleted_at: true;
    pinned_at: true;
    updated_at: true;
    command: true;
    mentioned_users: true;
    quoted_message: true;
    latest_reactions: true;
    own_reactions: true;
    reaction_counts: true;
    reply_count: true;
    i18n: true;
    type: true;
    html: true;
    __html: true;
    user: true;
}>;
export declare const LOCAL_MESSAGE_FIELDS: Readonly<{
    error: true;
}>;
export declare const DEFAULT_QUERY_CHANNELS_RETRY_COUNT = 3;
export declare const DEFAULT_QUERY_CHANNELS_MS_BETWEEN_RETRIES = 1000;
