import { ResourceType, Resource } from './models'; export declare const getResourcesUrl: () => string; /** * Get the path for the given resource type. For example ResourceType.Articles * will be at /articles * @param type */ export declare const getResourceTypeUrl: (type: ResourceType) => string; /** * Get the full path to the given resource * @param record */ export declare const getResourceUrl: (resource: Resource) => any;