export declare enum FmAxisPosition { Left = "left", Top = "top", Right = "right", Bottom = "bottom", Center = "center" } declare enum FmAlignPosition { Start = "start", Center = "center", End = "end", Left = "left", Right = "right", Top = "top", Bottom = "bottom" } declare enum FmAnchorPosition { Start = "start", Center = "center", End = "end" } export interface FmChartDataLabelsOptions { display?: boolean; align?: FmAlignPosition | `${FmAlignPosition}`; anchor?: FmAnchorPosition | `${FmAnchorPosition}`; offset?: number; rotation?: number; font?: { size?: number; }; color?: string; } export interface FmChartAxisOptions { display?: boolean; position?: FmAxisPosition | `${FmAxisPosition}`; title?: { display?: boolean; text?: string; }; grid?: { display?: boolean; }; ticks?: { display?: boolean; font?: { size?: number; }; }; stacked?: boolean; } export {};