export interface CommunityAttachment {
    /** Unique identifier for the community post file. */
    id: number;
    /** Identifier for the community this post file belongs to. */
    community_id: number;
    /** Identifier for the post this file is associated with. */
    post_id: number;
    /** Identifier for the user who uploaded the file. */
    user_id: number;
    /** Size of the file in bytes. */
    size: string;
    /** Name of the file. */
    name: string;
    /** Path of the file on storage. */
    path: number;
    /** Flag indicating whether the file is a virus. */
    virus: boolean;
}
export declare namespace CommunityAttachment {
}
