export type TextSettings = {
  content?: string;
  font?: string;
  color?: string;
};

export const defaultTextSettings: TextSettings = {};
