import { VoiceNote } from '@airgram-dev/core'; /** Represents a voice note */ export declare class InlineQueryResultVoiceNoteBaseModel { _: 'inlineQueryResultVoiceNote'; /** Unique identifier of the query result */ id: string; /** Voice note */ voiceNote: VoiceNote; /** Title of the voice note */ title: string; }