import React from 'react'; import { type ActivityIndicatorProps } from 'react-native'; export type Props = ActivityIndicatorProps & { variant?: any; lightColor?: string; darkColor?: string; }; declare const LoaderComponent: (Props: Props) => React.JSX.Element; export default LoaderComponent; export declare const PageLoader: ({ loading, text }: { loading: boolean; text?: string; }) => React.JSX.Element; //# sourceMappingURL=Loader.d.ts.map