export function LaunchDarklyProvider({ clientSideID, context, options, children, LoadingContent, onTimeout, }: {
    clientSideID: any;
    context: any;
    options: any;
    children: any;
    LoadingContent: any;
    onTimeout?: (() => void) | undefined;
}): JSX.Element;
export function useLaunchDarkly(): {
    flags: any;
    isLoading: any;
    isInitialized: any;
    trackMetric: any;
    trackOfferReferral: any;
    whichVariation: any;
    ldclient: any;
    hasProvider: boolean;
};
export function withLaunchDarkly(Component: any): (props: any) => JSX.Element;
