import * as React from 'react'; import { StandardProps } from '../../common'; export interface AccordionTableRowProps extends StandardProps { /** * Displays `AccordionRow` in the active state. */ active?: boolean; /** * Triggers `click` event only if `true`. * By default set to `true`. */ clickable?: boolean; /** * The event which will be fired when row is clicked. */ onClick?(e: React.MouseEvent): void; } export declare const AccordionTableRow: React.SFC & { inner: { readonly StyledAccordionTableRow: any; }; };