import React from "react"; import { ViewProps } from "react-native"; import { ProgressIndicatorProps } from "./types"; export type LinearProgressProps = ProgressIndicatorProps & ViewProps; export declare const LinearProgress: { ({ value, ...rest }: LinearProgressProps): React.JSX.Element; displayName: string; };