eip-components-web
Version:
EIP components
21 lines • 824 B
TypeScript
import React from 'react';
export declare const useFirebase: () => any;
export declare const useAuth: () => any;
export declare const FirebaseProvider: ({ children }: {
children: React.ReactNode;
}) => React.ReactNode;
export declare const withAuth: <RestProps extends {}>(Component: React.ComponentType<any>, LoadingComponent: React.ComponentType, firebaseAppName: string) => React.ComponentType<RestProps>;
export declare const usePixel: () => Pixel | undefined;
export declare const PixelProvider: ({ children }: {
children: React.ReactNode;
}) => React.ReactNode;
export type Pixel = {
fbc: string | null;
fbp: string;
browser_uuid: string;
leadId: string | undefined;
};
export type FirebaseApp = any;
export type Auth = any;
export type User = any;
//# sourceMappingURL=framework-stubs.d.ts.map