import IAccount from './IAccount';
export default interface IAccountsResponse {
    data: IAccount[];
}
