import { default as React } from 'react'; import { CustomerType } from '../../types/customer.types'; export type IAuthState = { organisationId: string; customerId: CustomerType; token?: string | null; }; export declare const useAuth: () => IAuthState; export type IAuthProviderProps = IAuthState & { children: React.ReactNode; }; export declare const AuthProvider: ({ children, organisationId, customerId, token, }: IAuthProviderProps) => React.JSX.Element;