/** * Pass the prop to component conditionally. * just passing `undefined` violates the ESLint rule, and it's less readable. * So let's use this function to pass the conditional prop. */ export declare function passConditionalProp

(condition: boolean, prop: P): P | undefined;