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