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