export interface ListProps {
    /**
     * If `true` the list will be collapsable.
     */
    collapsable?: boolean;
    /**
     * If `true` the collapsable list is open.
     */
    open?: boolean;
}
