import type { SmlouvyHledatRazeni } from '../../Constants'; import type { Client } from '../Client'; import type { SmlouvaSearchResultDTO, Smlouva } from '../types/Smlouvy'; export declare class Smlouvy { private readonly client; constructor(client: Client); hledat(options: SmlouvyHledatQuery): Promise; getOne(id: string): Promise; vsechnaID(): Promise; text(id: string): Promise; } export interface SmlouvyHledatQuery { dotaz: string; strana?: number; razeni?: SmlouvyHledatRazeni; } //# sourceMappingURL=Smlouvy.d.ts.map