import { FunctionComponent } from 'react'; import { IAppStyle } from '../../theme/IStyle'; export interface IFrontWrapperProps { hasArrow?: boolean; noShadow?: boolean; className?: string; } export declare type IFrontWrapper = FunctionComponent; export declare type IArrowStyle = IAppStyle;