import type { IDisableableProps } from '../../Behaviors/Disableable'; import type { ILabelableProps } from '../../Behaviors/Labelable'; /** * Represents the `ICellElementProps` interface. * * @public */ export interface ICellElementProps extends ILabelableProps, IDisableableProps { isNavigation: boolean; subLabel?: string; } //# sourceMappingURL=ICellElementProps.d.ts.map