import type { Generic } from 'adopted-style-sheets';
export type ReadOnlyPropType = boolean;
export type PropReadOnly = {
    readOnly: ReadOnlyPropType;
};
export declare const validateReadOnly: (component: Generic.Element.Component, value?: ReadOnlyPropType) => void;
