import type { Snowflake } from "discord-api-types/v10"; import { MessageType } from "discord-api-types/v10"; import type { ChatMessage } from "../../types"; interface BoostTierUpgradeProps { createdAt: ChatMessage["timestamp"]; content: string; channelId: Snowflake; type: MessageType; author: ChatMessage["author"]; } declare function BoostTierUpgrade({ createdAt, content, channelId, type, author, }: BoostTierUpgradeProps): import("react/jsx-runtime").JSX.Element; export default BoostTierUpgrade; //# sourceMappingURL=BoostTierUpgrade.d.ts.map