export declare const preferProp: (def: boolean, prop?: boolean, context?: boolean) => boolean;
/**
* For given default, prop, and context values, return the first provided of prop,
* context, and default, in that order.
*
* @group Hooks
*/
export declare const usePreferProp: (def: boolean, prop?: boolean, context?: boolean) => boolean;
/**
* For given default, prop, and context values, return the first provided of prop,
* context, and default, in that order.
*
* @group Hooks
*/
export declare const usePreferAnyProp: (def?: any, prop?: any, context?: any) => any;
