import { ElementType, HTMLProps, PropsWithChildren } from 'react';
export type StreamThemeProps = HTMLProps<HTMLElement> & {
    as?: ElementType;
};
export declare const StreamTheme: ({ as: Component, className, children, ...props }: PropsWithChildren<StreamThemeProps>) => import("react/jsx-runtime").JSX.Element;
