import type { Generic } from 'adopted-style-sheets';
import type { WatchStringOptions } from '../utils';
export type AltPropType = string;
export type PropAlt = {
    alt: AltPropType;
};
export declare const validateAlt: (component: Generic.Element.Component, value?: AltPropType, options?: WatchStringOptions) => void;
