import * as thrift from "@creditkarma/thrift-server-core"; export interface IRect { x: number; y: number; height: number; width: number; } export interface IRectArgs { x: number; y: number; height: number; width: number; } export declare const RectCodec: thrift.IStructCodec; export declare class Rect extends thrift.StructLike implements IRect { x: number; y: number; height: number; width: number; readonly _annotations: thrift.IThriftAnnotations; readonly _fieldAnnotations: thrift.IFieldAnnotations; constructor(args: IRectArgs); static read(input: thrift.TProtocol): Rect; static write(args: IRectArgs, output: thrift.TProtocol): void; write(output: thrift.TProtocol): void; }