import React, { FC } from 'react'; export interface FramePropsStrict { /** Adds one or more classnames to an element */ className?: string; /** Set the wrapping element's tagname */ el?: any; /** Content for a Global Header */ header?: React.ReactElement; } export interface FrameProps extends FramePropsStrict { [propName: string]: any; } export declare const Frame: FC;