import React from 'react'; export interface IMicroTour { children: React.ReactNode; className?: string; expires?: string; hide?: 'xs' | 'sm' | 'md' | 'lg'; localStorageKey: string; target: React.RefObject; placement?: 'top' | 'top-start' | 'top-end' | 'right' | 'bottom' | 'bottom-start' | 'bottom-end' | 'left'; onClick?(): void; onDismiss?(): void; [x: string]: any; } export declare const MicroTour: React.FC;