import { ComponentProps, ElementType, ReactNode } from "react"; import { HeadingProps } from "../../typography"; import { InteractionProps, InternalProps, OmitInternalProps, StyledComponentProps } from "../../shared"; declare const DefaultElement = "button"; export interface InnerAccordionHeaderProps extends InternalProps, InteractionProps, StyledComponentProps { /** * React children. */ children: ReactNode; /** * Whether or not the tab is disabled. */ disabled?: boolean; /** * The header item props. */ header: { key: string; }; /** * Additional props to render on the heading wrapper element. */ headingProps?: Partial; /** * The heading component type. */ headingType: ElementType | string; } export declare function InnerAccordionHeader(props: InnerAccordionHeaderProps): JSX.Element; export declare namespace InnerAccordionHeader { var defaultElement: string; } /** * [Documentation](https://orbit.sharegate.design/?path=/docs/accordion--default-story) */ export declare const AccordionHeader: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; export declare type AccordionHeaderProps = ComponentProps; export {};