/**
 * Decide whether a camera's bare motion should trip the HomeKit MotionSensor.
 *
 * @param inputs - The three camera facts the policy reads, named so the truth table is legible: whether HKSV is recording, whether the camera can smart-detect, and
 *                 whether the user enabled smart detection.
 *
 * @returns `true` when a bare motion should trip the HomeKit MotionSensor, `false` when the smart detection owns motion for this camera.
 */
export declare function shouldDeliverBareMotion(inputs: {
    hksvRecording: boolean;
    smartCapable: boolean;
    smartDetectEnabled: boolean;
}): boolean;
//# sourceMappingURL=motion-policy.d.ts.map