/**
 *
 * @export
 * @interface TransactionCommentCreate
 */
export interface TransactionCommentCreate {
    /**
     * The comment's actual content.
     * @type {string}
     * @memberof TransactionCommentCreate
     */
    content?: string;
    /**
     * The transaction that the comment belongs to.
     * @type {number}
     * @memberof TransactionCommentCreate
     */
    transaction: number;
}
/**
 * Check if a given object implements the TransactionCommentCreate interface.
 */
export declare function instanceOfTransactionCommentCreate(value: object): value is TransactionCommentCreate;
export declare function TransactionCommentCreateFromJSON(json: any): TransactionCommentCreate;
export declare function TransactionCommentCreateFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransactionCommentCreate;
export declare function TransactionCommentCreateToJSON(json: any): TransactionCommentCreate;
export declare function TransactionCommentCreateToJSONTyped(value?: TransactionCommentCreate | null, ignoreDiscriminator?: boolean): any;
