import { PropOptions } from './prop.options';
export type BooleanPropOptions = PropOptions<boolean> & {
    isArray?: boolean;
};
export declare function BooleanProp(options?: BooleanPropOptions): PropertyDecorator;
