import type { Generic } from 'adopted-style-sheets';
export type CheckedPropType = boolean;
export type PropChecked = {
    checked: CheckedPropType;
};
export declare const validateChecked: (component: Generic.Element.Component, value?: CheckedPropType) => void;
