import { PropertyRequestParams, PropertyResponse } from '@vepler/council-register-types';
/**
 * Retrieve property and tax band data by location ID(s)
 *
 * @param params - Request parameters containing location IDs
 * @returns Promise with property and tax band data
 */
export declare function getProperty(params: PropertyRequestParams): Promise<PropertyResponse>;
