import { TextOptions } from '../components/common/type'; export type TextType = "textStyle" | "subtextStyle" | "pageTextStyle" | "nameTextStyle" | "axisLabel" | "axisName" | "label" | 'endLabel' | "dayLabel" | "monthLabel" | "yearLabel" | "selectorLabel"; export interface TextContext { updateTextStyle: (name: T, data: TextOptions) => void; }