import { ParentType, Priority, AttachmentType } from './types'; type CreatePostInput = { post: { id: string; message: string; parentId: string; parentType: ParentType; priority?: Priority; attachmentsV2?: { externalId: string; type: AttachmentType; subType: string; }[]; }; }; export declare function useCreatePost(): import("@tanstack/react-query").UseMutationResult; export {};