import * as thrift from "@creditkarma/thrift-server-core"; export interface IMetricFont { duration: number; size?: number; name?: string; } export interface IMetricFontArgs { duration: number; size?: number; name?: string; } export declare const MetricFontCodec: thrift.IStructCodec; export declare class MetricFont extends thrift.StructLike implements IMetricFont { duration: number; size?: number; name?: string; readonly _annotations: thrift.IThriftAnnotations; readonly _fieldAnnotations: thrift.IFieldAnnotations; constructor(args: IMetricFontArgs); static read(input: thrift.TProtocol): MetricFont; static write(args: IMetricFontArgs, output: thrift.TProtocol): void; write(output: thrift.TProtocol): void; }