/// <reference types="react-native-reanimated" />
import { ProgressProps } from './type';
export default function useLineProgress({ width, strokeWidth, value, unit, }: Pick<ProgressProps, 'width' | 'strokeWidth' | 'value' | 'unit'>): {
    textLabel: import("react-native-reanimated").SharedValue<string>;
    animatedProps: Partial<{
        x2: number;
    }>;
};
//# sourceMappingURL=useLineProgress.d.ts.map