import { ReactNode } from 'react'; interface Props { color?: 'primary' | 'secondary'; children: ReactNode; } export { Props as ThemeColorSwapperProps }; export declare function ThemeColorSwapper(props: Props): JSX.Element;