/// import { IStylableProps } from '../Generic.types'; export interface IFooterProps extends IStylableProps { /** * An optional trademark text or component that is rendered below the Footer. If not specified nothing is rendered. */ trademark?: (React.ReactNode | string); } export interface IRowProps extends IStylableProps { /** * @default false */ canCollapse?: boolean; /** * @default false */ collapsed?: boolean; /** * A function called whenever the user clicks on the element that should toggle collapse. */ onToggleCollapseClick?: (flag: boolean) => void; /** * A heading that serves as the text of the collapse/expand button for the specific row. */ heading?: string; } export interface IColumnProps extends IStylableProps { heading?: string; }