import 'server-only'; import { DBAPIStampDutyRateData, Country, SelectableCountries, TaxTypes } from './stamp-duty-rates.types'; import Model, { ModelError } from './model'; import Pagination from './helpers/pagination'; export * from './stamp-duty-rates.types'; export default class StampDutyRate extends Model { static findAll({ searchParams: country }?: { searchParams?: Country; }): Promise<{ results: StampDutyRate[]; errors: ModelError[] | null; pagination: Pagination | null; }>; get id(): number | null; get countryName(): SelectableCountries; get minimumPropertyPrice(): number | null; get maximumPropertyPrice(): number | null; get baseSdltRate(): number | string | null; get baseLbttRate(): number | string | null; get baseLttRate(): number | string | null; get additionalPropertySurcharge(): number | string | null; get firstTimeBuyerRate(): number | string | null; get nonUkResidentSurcharge(): number | string | null; get firstTimeBuyerCap(): number | string | null; get taxType(): TaxTypes | null; } //# sourceMappingURL=stamp-duty-rate.d.ts.map