UNPKG

@guestbell/react-page-plugins

Version:

Plugins we use in GuestBell for working with amazing react-page package

9 lines (8 loc) 308 B
import * as React from 'react'; import { ModeEnum } from '../types/ModeEnum'; import { BackgroundControlsProps } from '../types/controls'; export interface BackgroundControlsState { mode: ModeEnum; } declare const BackgroundControls: React.FC<BackgroundControlsProps>; export default BackgroundControls;