export function prepareProps(...values: {} | "" | [""]): {}; export function deprecateProp(validator: any, additionalInfo: any): (props: any, propName: any, comp: any, loc: any, propFullName: any, secret: any) => any; export function getDeprecatedArgTypes(deprecatedProps: any): {}; /** * A prop-types validation function that takes an array of type checkers and * requires prop values to satisfy all of the type checkers. This can be useful * to combine custom validation functions with regular prop types, or for * combining inherited prop-types from another component with tighter * requirements. * * Examples: * * MyComponent.propTypes = { * * foo: allPropTypes([ * customValidationFunction, * PropTypes.arrayOf( * PropTypes.shape({ * text: PropType.string * }) * ) * ]), * * kind: allPropTypes([ * Button.propTypes.kind, * PropTypes.oneOf(['primary', 'secondary']) * ]), * * } */ export const allPropTypes: any; //# sourceMappingURL=props-helper.d.ts.map