export declare const isGetForumsResponse: (data: unknown) => data is { forums: import("./community.define").Forum[]; }; export declare const isGetTopicsResponse: (data: unknown) => data is { topics: import("./community.define").Topic[]; }; export declare const isGetTopicResponse: (data: unknown) => data is { topic: import("./community.define").Topic; }; export declare const isGetPostResponse: (data: unknown) => data is { post: import("./community.define").Post; }; export declare const isGetPostsResponse: (data: unknown) => data is { posts: import("./community.define").Post[]; next_token: string | undefined; }; export declare const isCreatePostResponse: (data: unknown) => data is { post: import("./community.define").Post | undefined; antispam: import("./community.define").Antispam | undefined; }; export declare const isRelyListResponse: (data: unknown) => data is { replies: import("./community.define").Reply[]; next_token: string | undefined; }; export declare const isRelyResponse: (data: unknown) => data is { reply: import("./community.define").Reply; }; export declare const isCreateReplyResponse: (data: unknown) => data is { reply: import("./community.define").Reply | undefined; antispam: import("./community.define").Antispam | undefined; }; export declare const isCommentResponse: (data: unknown) => data is { comment: import("./community.define").Comment; }; export declare const isCommentListResponse: (data: unknown) => data is { comments: import("./community.define").Comment[]; next_token: string | undefined; }; export declare const isCreateCommentResponse: (data: unknown) => data is { comment: import("./community.define").Comment | undefined; antispam: import("./community.define").Comment | undefined; }; export declare const isGetPresignedUrlResponse: (data: unknown) => data is import("./community.define").PresignedUrlResponse; export declare const isNotificationListWithToken: (data: unknown) => data is { notifications: (import("./community.define").NotificationSystem | import("./community.define").NotificationPost | import("./community.define").NotificationPostComment | import("./community.define").NotificationCommentReply | import("./community.define").NotificationComment | import("./community.define").NotificationReplyReplied | import("./community.define").NotificationReply)[]; next_token: string | undefined; }; export declare const isUnreadNotificationsCountResponse: (data: unknown) => data is { system: number; comment: number; like: number; };