import React, { ReactNode } from "react"; import { ViewProps } from "react-native"; import { IconName } from "../Icon"; export type AccordionItemProps = { /** * Title of the accordion item. */ title: string; /** * Positions the chevron in the item either to the left or to the right. */ chevronPosition?: "right" | "left"; /** * Additional space for adding custom components to the item. */ adornment?: ReactNode; /** * Icon to use with the title. */ iconName?: IconName; /** * Boolean value indicating whether or not the item should respond to touch. */ disabled?: boolean; /** * Boolean value indicating whether or not the item should be opened by default. */ defaultOpen?: boolean; }; export declare const AccordionItem: ({ title, chevronPosition, disabled, adornment, iconName, children, defaultOpen, ...rest }: AccordionItemProps & ViewProps) => React.JSX.Element;