import HestiaHelper from './hestia-helper'; import type { BranchHestiaSearchParams, HestiaBranchData, BranchHestiaFields } from '../../models/branch'; import { ModelError } from '../../models/model'; export default class HestiaBranchHelper extends HestiaHelper { basePath: string; resourceName: string; findOne({ slug, }: { slug: string; }): Promise<{ result: HestiaBranchData | null; errors: ModelError[] | null; }>; findAll(params: { page?: number; pageSize?: number; search?: BranchHestiaSearchParams; sort?: string; fields?: BranchHestiaFields; }): Promise<{ results: HestiaBranchData[]; totalCount: number; errors: ModelError[] | null; }>; } //# sourceMappingURL=hestia-branch-helper.d.ts.map