import HestiaHelper from './hestia-helper'; import type { PropertySearchParams, HestiaPropertyData, PropertyHestiaSearchParams } from '../../models/property'; import { ModelError } from '../../models/model'; export default class HestiaPropertyHelper extends HestiaHelper { basePath: string; resourceName: string; findAll(params: PropertySearchParams): Promise<{ results: HestiaPropertyData[]; totalCount: number; errors: ModelError[] | null; }>; findOne(search: Omit): Promise<{ result: HestiaPropertyData | null; errors: ModelError[] | null; }>; /** * Provides a tag list to be excluded from an open search */ invertExcludeTags(excludeTags?: string): string[]; } //# sourceMappingURL=hestia-property-helper.d.ts.map