import { QueryToken } from '../../db'; import { SDK } from '../../SDK'; import { ProjectId, UserId } from 'teambition-types'; import { PostSchema } from '../../schemas/Post'; import { GetPostsQuery } from './getProjects'; export declare function getMyProjectPosts(this: SDK, userId: UserId, _projectId: ProjectId, query?: GetPostsQuery<'my'>): QueryToken; declare module '../../SDK' { interface SDK { getMyProjectPosts: typeof getMyProjectPosts; } }