import * as react_jsx_runtime from 'react/jsx-runtime'; import { ThemeName } from '@teamsparta/stack-tokens'; import { PropsWithChildren } from 'react'; import { BreakpointContextValue } from './responsive/StackBreakpointProvider.js'; import './responsive/types.js'; interface StackProviderProps { breakpoints?: BreakpointContextValue; theme?: ThemeName; } declare function StackProvider({ children, breakpoints, theme, }: PropsWithChildren): react_jsx_runtime.JSX.Element; export { StackProvider, type StackProviderProps };