import { ComponentProps, ReactNode } from "react"; import { InternalProps, OmitInternalProps, StyledComponentProps } from "../../shared"; declare const DefaultElement = "div"; export interface InnerListboxSectionProps extends InternalProps, StyledComponentProps { /** * React children. */ children: ReactNode; /** * The section name. */ title: string; } export declare function InnerListboxSection({ as, children, forwardedRef, id, title, ...rest }: InnerListboxSectionProps): JSX.Element; export declare namespace InnerListboxSection { var defaultElement: string; } /** * [Documentation](https://orbit.sharegate.design/?path=/docs/listbox--default-story) */ export declare const ListboxSection: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; export declare type ListboxSectionProps = ComponentProps; export {};