import type { Generic } from 'adopted-style-sheets';
import type { WatchBooleanOptions } from '../utils';
export type HasCounterPropType = boolean;
export type PropHasCounter = {
    hasCounter: HasCounterPropType;
};
export declare const validateHasCounter: (component: Generic.Element.Component, value?: HasCounterPropType, options?: WatchBooleanOptions) => void;
