import { BlockDescription } from "../../../aggregate/Blocks"; import { VariableDistribution } from "../../../aggregate/Common"; export interface MessagesEdited { count: { /** Number of messages edited by each author */ authors: number[]; /** Number of messages edited in each channel */ channels: number[]; }; editedInLessThan1Second: number; /** Edit time distribution in seconds */ editTimeDistribution: VariableDistribution; } declare const _default: BlockDescription<"messages/edited", MessagesEdited, undefined>; export default _default;