import { ModelData, Model } from "@kubernetes-models/base";
export interface ICommitUser {
    /**
     * Email gives the email to provide when making a commit.
     */
    "email": string;
    /**
     * Name gives the name to provide when making a commit.
     */
    "name"?: string;
}
export declare class CommitUser extends Model<ICommitUser> implements ICommitUser {
    "email": string;
    "name"?: string;
    constructor(data?: ModelData<ICommitUser>);
}
export type { ICommitUser as IComGithubFluxcdImageAutomationControllerApiV1CommitUser, CommitUser as ComGithubFluxcdImageAutomationControllerApiV1CommitUser };
