import type { APIUser, Snowflake } from "discord-api-types/v10"; import type { ComponentProps } from "react"; import * as Styles from "./style/author"; interface AutomodAuthorProps { isAvatarAnimated?: boolean; } export declare function AutomodAuthor({ isAvatarAnimated }: AutomodAuthorProps): import("react/jsx-runtime").JSX.Element; interface MessageAuthorProps extends ComponentProps { author: APIUser; isAvatarAnimated?: boolean; onlyShowUsername?: boolean; crossPost?: boolean; referenceGuild?: Snowflake; guildId: Snowflake | null | undefined; } declare function MessageAuthor({ onlyShowUsername, author, crossPost, referenceGuild, guildId, ...props }: MessageAuthorProps): import("react/jsx-runtime").JSX.Element; export default MessageAuthor; //# sourceMappingURL=MessageAuthor.d.ts.map