import { ThemeObject } from '../../utils';
interface Props {
    theme: ThemeObject;
    themeOverrides: ThemeObject;
    onChange: (variable: string, value: string, commit?: boolean) => void;
    onContribute: () => void;
}
export declare const VariableKnobs: ({ theme, themeOverrides, onChange, onContribute }: Props) => JSX.Element;
export {};
