import React from 'react';
import { ElementProps } from '../core/ViewComponent';
export interface ExpandIconProps extends ElementProps {
    expandable?: boolean;
    expanded?: boolean;
    onChange: (e: any) => void;
}
declare const _default: React.NamedExoticComponent<ExpandIconProps>;
export default _default;
