import { ModelData, Model } from "@kubernetes-models/base";
/**
 * AlphabeticalPolicy specifies a alphabetical ordering policy.
 */
export interface IAlphabeticalPolicy {
    /**
     * Order specifies the sorting order of the tags. Given the letters of the
     * alphabet as tags, ascending order would select Z, and descending order
     * would select A.
     */
    "order"?: "asc" | "desc";
}
/**
 * AlphabeticalPolicy specifies a alphabetical ordering policy.
 */
export declare class AlphabeticalPolicy extends Model<IAlphabeticalPolicy> implements IAlphabeticalPolicy {
    "order"?: "asc" | "desc";
    constructor(data?: ModelData<IAlphabeticalPolicy>);
}
export type { IAlphabeticalPolicy as IComGithubFluxcdImageReflectorControllerApiV1beta2AlphabeticalPolicy, AlphabeticalPolicy as ComGithubFluxcdImageReflectorControllerApiV1beta2AlphabeticalPolicy };
