import { ICreateGroov, IGroov, IGroovQuery, IUpdateGroov } from './groov.dto'; import { AxiosInstance } from 'axios'; declare const groovsApi: (axios: AxiosInstance) => { list(query?: IGroovQuery): Promise>; create(data: ICreateGroov): Promise>; retrieve(id: string): Promise>; update(id: string, data: IUpdateGroov): Promise>; delete(id: string): Promise>; }; export default groovsApi;