import { FC } from 'react';
interface ThemeChangerProps {
    /**
     * If set, then the ThemeChanger will set a theme the first time it runs
     */
    initialValue?: string;
}
/**
 * A dropdown picker to select a theme.
 * Must be used inside a `<ThemeProvider />`.
 */
declare const ThemeChanger: FC<ThemeChangerProps>;
export default ThemeChanger;
