import React from "react"; export * from "@artsy/palette-tokens/dist/themes/v3"; export { TextVariant } from "@artsy/palette-tokens/dist/typography/v3"; interface ThemeProps { children?: React.ReactNode; theme?: "light" | "dark"; } /** * A wrapper component for passing down the Artsy theme context */ export declare const Theme: React.FC>; /** Returns the current theme */ export declare const useTheme: ; }>() => { theme: T; };