import type { Validator } from 'react';
type DeprecatedPropTypeOptions<T> = {
    propType?: Validator<T>;
    explanation?: string;
};
export default function deprecatedPropType<T = any>(options?: DeprecatedPropTypeOptions<T>): Validator<T>;
export {};
//# sourceMappingURL=deprecatedPropType.d.ts.map