export declare type CountUnion = Count; /** Contains a counter */ export interface Count { _: 'count'; /** Count */ count: number; }