import { DataInsertType, KeyTemplateType } from "../enums/keyEnum";
export interface IKeyTemplate {
    key: string;
    description?: string;
    type?: KeyTemplateType;
    dataInsertType?: DataInsertType;
    style?: ITextStyle;
}
export interface ITextStyle {
    allCaps?: boolean;
    baselineAlignment?: string;
    bold?: boolean;
    fontColor?: string;
    fontFamily?: string;
    fontSize?: number;
    italic?: boolean;
    strikethrough?: string;
    underline?: string;
}
