/** * Endpoints templates. * @type {Object} */ declare const ENDPOINTS: { root: () => string; batch: () => string; permissions: () => string; bucket: (bucket?: string | undefined) => string; history: (bucket: string) => string; collection: (bucket: string, coll?: string | undefined) => string; group: (bucket: string, group?: string | undefined) => string; record: (bucket: string, coll: string, id?: string | undefined) => string; attachment: (bucket: string, coll: string, id: string) => string; }; export default ENDPOINTS;