/**
 * The property value for an iCalendar entry.
 */
type ICSPropertyValue = Record<string, any> | string | number;
export default ICSPropertyValue;
