import React, { ReactNode } from "react"; export interface KeySectionProps { children: ReactNode; style?: object; } export declare const KeySection: ({ children, style }: KeySectionProps) => React.JSX.Element;