
import * as React from 'react';

  import { ZMPParameters } from 'zmp-core/types';


interface AppProps extends ZMPParameters {
  slot?: string;
  className?: string;
  style?: React.CSSProperties;
  ref?: React.MutableRefObject<{el: HTMLElement | null}>;
  color?: string;
  colorTheme?: string;
  textColor?: string;
  bgColor?: string;
  borderColor?: string;
  rippleColor?: string;
  themeDark?: boolean;
  children?: React.ReactNode;
}
declare const App: React.FunctionComponent<AppProps>;

export default App;
  