import { Observable } from 'rxjs/Observable'; import { SDK } from '../../SDK'; import { SDKFetch } from '../../SDKFetch'; import { PostId } from 'teambition-types'; export declare function deletePostFetch(this: SDKFetch, _postId: PostId): Observable; declare module '../../SDKFetch' { interface SDKFetch { deletePost: typeof deletePostFetch; } } export declare function deletePost(this: SDK, postId: PostId): Observable; declare module '../../SDK' { interface SDK { deletePost: typeof deletePost; } }