import type { Generic } from 'adopted-style-sheets';
import type { WatchStringOptions } from '../utils';
export type WidthPropType = string;
export interface PropWidth {
    width: WidthPropType;
}
export declare const validateWidth: (component: Generic.Element.Component, value?: WidthPropType, options?: WatchStringOptions) => void;
