import * as React from 'react'; interface IAction { id?: string; label: string; disabled?: boolean; handler?: () => void; } export interface IListRowProps { id?: string; label: string | React.ReactNode; value?: React.ReactNode; placeHolder?: string; action?: IAction; actionsMenu?: React.ReactNode; actionType?: ActionType; isLinkLabel?: boolean; onClickLabelLink?: () => void; status?: React.ReactNode; nameWithAvatar?: React.ReactNode; } export declare enum ActionType { LINK = "link", ICON = "icon", BUTTON = "button" } export declare const ListRow: (props: IListRowProps) => React.JSX.Element; export {}; //# sourceMappingURL=ListRow.d.ts.map