import React from "react"; interface ComponentProps { children: React.ReactNode; } interface StateProps { theme: keyof typeof themes; } declare const themes: { light: JSX.Element; dark: JSX.Element; }; export declare const ThemeFromConfig: { ({ theme, children }: ComponentProps & StateProps): JSX.Element; displayName: string; }; declare const _default: import("react-redux").ConnectedComponent<{ ({ theme, children }: ComponentProps & StateProps): JSX.Element; displayName: string; }, Pick>; export default _default;