import React from 'react'; export type ThemeBootstrapProps = { children: React.ReactNode; theme?: 'light' | 'dark' | 'kyte'; }; declare const ThemeBootstrap: ({ children, theme, }: ThemeBootstrapProps) => React.JSX.Element; export default ThemeBootstrap;