import { BadgeProps } from '../Badge'; import { Action } from './RowActions/RowActions'; export interface RowProps { label: string; value?: string; isFullWidth?: boolean; actions?: Action[] | null; hasBorder?: boolean; isLoading?: boolean; badgeProps?: BadgeProps | null; } declare const Row: ({ label, value, isFullWidth, actions, hasBorder, isLoading, badgeProps: badgeProperties, }: RowProps) => import("react/jsx-runtime").JSX.Element; export default Row;