import { default as React, ReactNode } from 'react'; interface ComponentBodyPropType { className?: string; id?: string; children?: ReactNode; key?: number | string; style?: React.CSSProperties; } export declare function OptionsContainer({ className, id, key, style, children, }: ComponentBodyPropType): import("react/jsx-runtime").JSX.Element; export {};