import React from 'react'; import { ListItemProps } from './ListItemBase'; import { IconNode } from '../icons/Icon'; export declare type ListItemAccordionProps = ListItemProps & { isExpanded?: boolean; icon?: IconNode; expandIcon?: IconNode; content?: React.ReactNode; noRotation?: boolean; noIcon?: boolean; animation?: { type?: 'timing' | 'spring'; duration?: number; } | boolean; }; declare const _default: React.FunctionComponent; disabledStyle?: import("react-native").StyleProp; topDivider?: boolean; bottomDivider?: boolean; pad?: number; Component?: typeof React.Component; ViewComponent?: typeof React.Component; linearGradientProps?: any; children?: any; } & { isExpanded?: boolean; icon?: IconNode; expandIcon?: IconNode; content?: React.ReactNode; noRotation?: boolean; noIcon?: boolean; animation?: boolean | { type?: "spring" | "timing"; duration?: number; }; } & Partial>, keyof import("../config").ThemeProps>> | React.ForwardRefExoticComponent; disabledStyle?: import("react-native").StyleProp; topDivider?: boolean; bottomDivider?: boolean; pad?: number; Component?: typeof React.Component; ViewComponent?: typeof React.Component; linearGradientProps?: any; children?: any; } & { isExpanded?: boolean; icon?: IconNode; expandIcon?: IconNode; content?: React.ReactNode; noRotation?: boolean; noIcon?: boolean; animation?: boolean | { type?: "spring" | "timing"; duration?: number; }; } & Partial>>; export default _default;