import { JsonObject } from '../../../types';
export interface DemographicsQueryParams {
    geographyCodes: string;
    format?: 'array' | 'object';
    topics?: string;
    censusPeriod?: string;
    hierarchyLevel?: number;
    includeMetadata?: boolean;
}
export interface GetDemographicsResponse {
    result: JsonObject[] | JsonObject;
    success: boolean;
}
export declare function queryDemographics(queryParams: DemographicsQueryParams): Promise<GetDemographicsResponse>;
export default queryDemographics;
