export interface JobComment {
    comment: string;
}
export declare function JobCommentFromJSON(json: any): JobComment;
export declare function JobCommentFromJSONTyped(json: any, ignoreDiscriminator: boolean): JobComment;
export declare function JobCommentToJSON(value?: JobComment | null): any;
