///
import { ThemeProviderProps } from "styled-components";
import { VibezTheme } from "./theme";
interface Props extends ThemeProviderProps {
className?: string;
}
export declare const VibezThemeProvider: (props: Props) => JSX.Element;
export declare function useVibezTheme(): import("styled-components").DefaultTheme;
export {};