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