import { SDKCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../sdk/models/errors/httpclienterrors.js"; import { SDKError } from "../sdk/models/errors/sdkerror.js"; import { SDKValidationError } from "../sdk/models/errors/sdkvalidationerror.js"; import * as operations from "../sdk/models/operations/index.js"; import { Result } from "../sdk/types/fp.js"; /** * Retrieve a single post * * @remarks * This endpoint can be used to get the number of likes on a post using the * `actions_summary` property in the response. `actions_summary` responses * with the id of `2` signify a `like`. If there are no `actions_summary` * items with the id of `2`, that means there are 0 likes. Other ids likely * refer to various different flag types. */ export declare function postsGetPost(client$: SDKCore, id: string, options?: RequestOptions): Promise>; //# sourceMappingURL=postsGetPost.d.ts.map