export interface DataLiveEditor {
    option_key: string;
    option_value: string;
    option_group?: string;
    language?: string;
    id: number | string;
}
export interface DataLiveEditorParse {
    [key: string]: string;
}
export interface PreviewItem {
    key: string;
    old: string;
    new: string;
}
export interface TypeIcons {
    name: string;
    svg: string;
}
export interface DataSave {
    update?: DataLiveEditor;
    create?: DataLiveEditor;
}
