You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
890 B
18 lines
890 B
/// <reference types="react" />
|
|
import { LinearProgressProps } from './LinearProgress';
|
|
declare const _default: import("react").FunctionComponent<Omit<{
|
|
value?: number;
|
|
variant?: "determinate" | "indeterminate";
|
|
color?: string;
|
|
trackColor?: string;
|
|
style?: import("react-native").StyleProp<import("react-native").ViewStyle>;
|
|
} & import("react-native").ViewProps & Partial<import("../config").ThemeProps<LinearProgressProps>>, keyof import("../config").ThemeProps<T>>> | import("react").ForwardRefExoticComponent<{
|
|
value?: number;
|
|
variant?: "determinate" | "indeterminate";
|
|
color?: string;
|
|
trackColor?: string;
|
|
style?: import("react-native").StyleProp<import("react-native").ViewStyle>;
|
|
} & import("react-native").ViewProps & Partial<import("../config").ThemeProps<LinearProgressProps>>>;
|
|
export default _default;
|
|
export type { LinearProgressProps };
|