import type { Generic } from 'adopted-style-sheets';
import type { WatchStringOptions } from '../utils';
export type HrefPropType = string;
export type PropHref = {
    href: HrefPropType;
};
export type HrefProp = Generic.Element.Members<PropHref, unknown>;
export declare const validateHref: (component: Generic.Element.Component, value?: HrefPropType, options?: WatchStringOptions) => void;
