/**
 *
 * @export
 * @interface RefundCommentCreate
 */
export interface RefundCommentCreate {
    /**
     * The comment's actual content.
     * @type {string}
     * @memberof RefundCommentCreate
     */
    content?: string;
    /**
     * The refund that the comment belongs to.
     * @type {number}
     * @memberof RefundCommentCreate
     */
    refund: number;
}
/**
 * Check if a given object implements the RefundCommentCreate interface.
 */
export declare function instanceOfRefundCommentCreate(value: object): value is RefundCommentCreate;
export declare function RefundCommentCreateFromJSON(json: any): RefundCommentCreate;
export declare function RefundCommentCreateFromJSONTyped(json: any, ignoreDiscriminator: boolean): RefundCommentCreate;
export declare function RefundCommentCreateToJSON(json: any): RefundCommentCreate;
export declare function RefundCommentCreateToJSONTyped(value?: RefundCommentCreate | null, ignoreDiscriminator?: boolean): any;
