import * as node_modules__pnpm__types_express_serve_static_core_4_19_5_node_modules__types_express_serve_static_core_index from 'node_modules/.pnpm/@types+express-serve-static-core@4.19.5/node_modules/@types/express-serve-static-core/index'; interface Result { status?: string; content?: string; errors?: string; token?: string; id?: string; } interface ReadProps { id: string; } interface CreateProps { id?: string; content: string; } interface UpdateProps { id: string; content: string; token: string; } interface DeleteProps { id: string; token: string; } /** * [RentryCo](https://github.com/cto4/rentry-co) -- By [cto4](https://github.com/cto4) * * A Full CRUD super-lite rentry.co wrapper with typescript support and no-dependencies library. */ declare class RentryCo { /** * Create a new rentry.co entry * @returns */ create({ id, content }: CreateProps): Promise; /** * Read rentry.co entry * @returns */ read({ id }: ReadProps): Promise; /** * Update rentry.co entry * @returns */ update({ id, content, token }: UpdateProps): Promise; /** * Delete rentry.co entry * @returns */ delete({ id, token }: DeleteProps): Promise; private csrf; } declare const RentryCoExpress: node_modules__pnpm__types_express_serve_static_core_4_19_5_node_modules__types_express_serve_static_core_index.Router; declare const rentry: RentryCo; export { RentryCoExpress as default, rentry };