import * as thrift from "@creditkarma/thrift-server-core"; export interface IMetricPaint { time: number; } export interface IMetricPaintArgs { time: number; } export declare const MetricPaintCodec: thrift.IStructCodec; export declare class MetricPaint extends thrift.StructLike implements IMetricPaint { time: number; readonly _annotations: thrift.IThriftAnnotations; readonly _fieldAnnotations: thrift.IFieldAnnotations; constructor(args: IMetricPaintArgs); static read(input: thrift.TProtocol): MetricPaint; static write(args: IMetricPaintArgs, output: thrift.TProtocol): void; write(output: thrift.TProtocol): void; }