import React from 'react';
interface IProps {
    expandable?: boolean;
    expandOpen?: boolean;
    expandContent?: React.ReactNode;
    expandIcon?: React.ReactNode;
    expandIconPosition?: 'left' | 'right';
    children?: React.ReactNode;
    className?: string;
    tableSetState?: (e: any) => void;
    onClick?: () => void;
}
declare const _default: React.MemoExoticComponent<({ ...props }: IProps) => JSX.Element>;
export default _default;
