import { InferComponentProps } from '../types'; import { Component, ComputedRef } from 'vue'; /** * A utility function that creates a reactive computed property * based on a specific prop of a Vue component. * * * @template C - The Vue component type. * @template P - The prop name. * * @param cb - A factory function that returns the value of the prop from the inferred component props. * * @returns A `ComputedRef` of the specified prop * * @example * ```ts * import { ref, defineComponent } from 'vue'; * import { useComponentProp } from '@platforma-sdk/ui-vue'; * * const MyComponent = defineComponent({ * props: { * myProp: { * type: String, * required: true * } * } * }); * * const propValue = useComponentProp(() => 'example'); * console.log(propValue.value); // Outputs: 'example' * ``` */ export declare function useComponentProp>(cb: () => InferComponentProps[P]): ComputedRef[P]>; //# sourceMappingURL=useComponentProp.d.ts.map