import { BaseCommonBackground } from "../base/BaseCommonBackground.js"; /** * @description Automatically determines the color to use for padding, if needed when resizing an asset. Selects the * predominant color from the border of the image. * @memberOf Qualifiers.Background * @extends {Qualifiers.Background.BaseCommonBackground} */ declare class BackgroundAutoBorderQualifier extends BaseCommonBackground { /** * @description * Stringify the qualifier * BackgroundQualifiers don't have a value, but instead override the toString() function. */ toString(): string; } export { BackgroundAutoBorderQualifier };