export declare namespace RoleContracts {
    interface IRoleContract {
        id: string;
        name: string;
        codename?: string;
    }
    interface IRoleListResponseContract {
        roles: IRoleContract[];
    }
}
