import type { RestEndpoint } from '../types';
export declare const get: RestEndpoint<'Comment', 'get'>;
export declare const getMany: RestEndpoint<'Comment', 'getMany'>;
export declare const create: RestEndpoint<'Comment', 'create'>;
export declare const update: RestEndpoint<'Comment', 'update'>;
export declare const del: RestEndpoint<'Comment', 'delete'>;
/**
 * @deprecated use `getMany` instead.
 */
export declare const getAll: RestEndpoint<'Comment', 'getAll'>;
