// Generated by dts-bundle v0.7.3 // Dependencies for this module: // ../../../react import * as React from 'react'; export interface IABasicCardProps { item?: any; title?: string; subtitle?: string; styles?: any; showSkeleton?: boolean; showCommandBarItems?: boolean; backgroundColor?: string; borderColor?: string; itemTitleColor?: string; itemTextColor?: string; itemTitleStyle?: string; itemTitleSize?: string; itemTitleAlign?: string; itemTitleWeight?: string; itemSubTitleSize?: string; onClickEdit?: (content: any) => void; onClickOpen?: (content: any) => void; onClickDelete?: (content: any) => void; onClickPreview?: (content: any) => void; onClickCopy?: (content: any) => void; } export interface IABasicCardState { commandaBarOpen: boolean; } export class IABasicCard extends React.Component { constructor(props: IABasicCardProps, state: IABasicCardState); render(): JSX.Element; }