import * as thrift from "@creditkarma/thrift-server-core"; export interface IEpic { title: string; body: string; firstButton: string; secondButton?: string; } export interface IEpicArgs { title: string; body: string; firstButton: string; secondButton?: string; } export declare const EpicCodec: thrift.IStructCodec; export declare class Epic extends thrift.StructLike implements IEpic { title: string; body: string; firstButton: string; secondButton?: string; readonly _annotations: thrift.IThriftAnnotations; readonly _fieldAnnotations: thrift.IFieldAnnotations; constructor(args: IEpicArgs); static read(input: thrift.TProtocol): Epic; static write(args: IEpicArgs, output: thrift.TProtocol): void; write(output: thrift.TProtocol): void; }