import type { Paragraphs } from "../paragraps-around-image/webcomponent.type";

export type Component = {
  paragraph?: Paragraphs | string;
  id?: string;
  style?: string;
  max_lines?: number;
};

export type Events = {
  paragraphPressed: { key: string };
};
