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