@opencloud-eu/design-system
Version:
OpenCloud Design System is used to design OpenCloud UI components
26 lines (25 loc) • 974 B
TypeScript
import { ContextualHelperDataListItem } from '../../helpers';
export interface Props {
/**
* @docs Title of the contextual helper.
*/
title: string;
/**
* @docs Text to be displayed at the end.
*/
endText?: string;
/**
* @docs List of items to be displayed. Please refer to the component source for the `ContextualHelperDataListItem` type definition.
*/
list?: ContextualHelperDataListItem[];
/**
* @docs Link for external references. Gets labeled with `Read more`.
*/
readMoreLink?: string;
/**
* @docs Text to be displayed.
*/
text?: string;
}
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
export default _default;