import { type Readable, type Files, Buffer } from '../../platform.node.js';
import type { Snake } from '../../Client/index.js';
import type { sendVideoParams } from './SendVideo.js';
export interface sendVideoNoteParams extends Omit<sendVideoParams, keyof {
    height?: number;
    weight?: number;
}> {
    length?: number;
}
export declare function sendVideoNote(client: Snake, chatId: bigint | string, file: string | Buffer | Readable | Files.File, more?: sendVideoNoteParams): Promise<import("../../TL/Messages/Message.js").Message>;
