interface IListOrgsResponse { metadata: { offset: number; items: number; total: number; }; records: Array<{ id: number; short: string; fullname: string; alias: string; type: ('F' | 'J'); reg: string; logo: string | null; expiration: string; billingDay: number; }>; } export default IListOrgsResponse;