interface PostInterface { format?: 'grid' | 'list'; title: string; postType: string; attachmentID: string | unknown; } /** * Displays a single post. * * @param {obj} atts The attributes of the Post. */ declare const Post: ({ format, title, postType, attachmentID, }: PostInterface) => import("react/jsx-runtime").JSX.Element; export default Post; //# sourceMappingURL=post.d.ts.map