import { CompanyView } from '@zeniai/client-epic-state'; interface ListItemHeightprops { collapsedHeight: number; height: number; } /** * Helps to calculate the subscription list item height based on less or more button event * */ export declare const getSubscriptionListItemHeight: (company: CompanyView) => ListItemHeightprops; export declare const isListItemCollapsable: (company: CompanyView, collapsableDataType: "plans" | "addons") => boolean; export {};