import { ApiKeyCallOptions } from './apiKeyCall'; export interface ApiSecretCallOptions extends ApiKeyCallOptions { apiSecret: string; getTime: () => number | Promise; /** * Не оставляет отпечаток времени */ noTimestamp?: boolean; /** * Не добавляет цифровую подпись */ noSignature?: boolean; recvWindow?: number; } export declare function apiSecretCall(options: ApiSecretCallOptions): Promise;